首页 > 试题广场 >

在SQL查询时,如果去掉查询结果中的重复组,需使用[$##$

[填空题]

SQL查询时,如果去掉查询结果中的重复组,需使用1参数

最好还是大写啊
发表于 2019-06-06 14:15:19 回复(1)

distinct

发表于 2019-08-23 13:51:41 回复(0)
select distinct 字段名  from 表名 。
对于查询多个字段同时不重复记录
select distinct 字段名1,字段名2,字段名3  from 表名

删除重复记录

Delete from tablename
 where id not in (select max(id) 
from tablename 
group by col1,col2,...)

 


发表于 2020-09-20 16:19:16 回复(0)
nice,成功写错,district 😂
发表于 2020-07-17 10:59:55 回复(0)
我写成大写就错了……
发表于 2019-09-09 09:37:37 回复(0)