peipei1987 发表于 2008-3-20 21:44:13

在线等,怎么把一个DATE型字段排序,并选择

例如选择2001.1.1-2001.12.30的

阿七 发表于 2008-3-21 09:45:11

貌似是这样写的

select * from 表
where date>2001.1.1 and date<2001.12.30

阿七 发表于 2008-3-21 09:59:54

排序的话在后头加个语句
select * from 表
where date>2001.1.1 and date<2001.12.30 order by date asc
页: [1]
查看完整版本: 在线等,怎么把一个DATE型字段排序,并选择