|  |  | 
 |  |  |     <select id="getAvailableInSite" resultType="java.lang.Integer"> | 
 |  |  |         select | 
 |  |  |         wbd.dev_no | 
 |  |  |         from wms_bas_devp wbd | 
 |  |  |         left join wms_sta_desc asd on wbd.dev_no = asd.stn_no | 
 |  |  |         from common_bas_devp wbd | 
 |  |  |         left join common_sta_desc asd on wbd.dev_no = asd.stn_no | 
 |  |  |         where 1=1 | 
 |  |  |         and asd.type_no = #{typeNo} | 
 |  |  |         and wbd.host_id = #{hostId} | 
 |  |  | 
 |  |  |     <select id="getAvailableOutSite" resultType="java.lang.Integer"> | 
 |  |  |         select | 
 |  |  |         wbd.dev_no | 
 |  |  |         from wms_bas_devp wbd | 
 |  |  |         left join wms_sta_desc asd on wbd.dev_no = asd.stn_no | 
 |  |  |         from common_bas_devp wbd | 
 |  |  |         left join common_sta_desc asd on wbd.dev_no = asd.stn_no | 
 |  |  |         where 1=1 | 
 |  |  |         and asd.type_no = #{typeNo} | 
 |  |  |         and wbd.host_id = #{hostId} |