1. 程式人生 > >Sql中查詢本月資料欄位的表示方法

Sql中查詢本月資料欄位的表示方法

----------------------------選出當月的記錄-------------------------------------------------------------------- select * from warehouse_work where putin_time> convert(datetime,substring(convert(varchar(10), getdate(), 120),1,8)+'01' ) -------------------------------------------------------------------------------------------------------------- select * from warehouse_work where substring(convert(varchar(10), putin_time, 120),1,8) like (substring(convert(varchar(10), getdate(), 120),1,8))