首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

求一句日期查找類型sql語句解决办法

2012-02-12 
求一句日期查找類型sql語句資料SQL codeAB2007-10-18 上午 11:20:22thems2007-10-16 上午 11:20:23thems20

求一句日期查找類型sql語句
資料

SQL code
    A                               B           2007-10-18 上午 11:20:22           thems2007-10-16 上午 11:20:23           thems2007-10-17 上午 11:20:24           thems2007-10-18 上午 11:20:26           thems

我想要得到 2007-10-18全天的記錄怎麼寫?
大或小於2007-10-18全天的呢?
我使用Convert只能將時間轉為 2007-10-18 00:00:00 的格式
不能對比查找


[解决办法]

select * from t where convert(varchar(10),date1,120)='2007-10-18'
[解决办法]
SQL code
select * from tb where convert(varchar(10),字段,120) = '2007-10-18'
[解决办法]
SQL code
等于:select * from 表名 where convert(varchar(10),A,120) = '2007-10-18'大于:select * from 表名 where convert(varchar(10),A,120) > '2007-10-18'小于:select * from 表名 where convert(varchar(10),A,120) < '2007-10-18' 

热点排行