在sql数据库中如何筛选以日期为条件的记录?

在sql数据库中如何筛选以日期为条件的记录?,第1张

sql数据库中如筛选以日期为条件的记录,可以用有二种方法具体实现,如下:\x0d\x0a第一种:直接用语句\x0d\x0a\x0d\x0adate1与date2是字符串\x0d\x0aSQL.Tet:='select*fromtablewhere字段between'+Quotedstr(date1)+'and'+Quotedstr(date2)\x0d\x0a\x0d\x0adate1与date2是日期\x0d\x0aSQL.Tet:='select*fromtablewhere字段between'+Quotedstr(DateTimeToStr(date1))+'and'+Quotedstr(DateTimeToStr(date2))\x0d\x0a\x0d\x0a第二种:用参数形式:\x0d\x0aSQL.Tet:='select*fromtablewhere字段between:d1and:d2'\x0d\x0aParameters.ParamByName('d1').Value:=date1\x0d\x0aParameters.ParamByName('d2').Value:=date2

--将字段条件筛选建立临时表

select top 100 * 

into #temp

from table 

where name not in ("%批发%","不含'%厂")

and region in ("餐饮",..."副食")--填写完每个经营面

--返回数据表,企业数和个体户,这个区分不知道用什么,所以第二个字段还需要改

select province,count(distinct name) as num_company,

case when name="个体户" then count(distinct name) as num_individual

from #temp

用group by语句可以筛选重复数据。

1、创建测试表、插入数据

create table test

(id int,

name varchar(10))

insert into test values (1,'张三')

insert into test values (2,'李四')

insert into test values (3,'王五')

insert into test values (4,'赵六')

insert into test values (1,'张三')

insert into test values (2,'李四')

2、现在要筛选出重复数据,使查询的数据不重复,可用语句

select id,name from test group by id,name

3、结果如图:


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10805414.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-11
下一篇 2023-05-11

发表评论

登录后才能评论

评论列表(0条)

保存