SQL删除重复项 及 字段大小写敏感

2022/1/12 19:35:19

本文主要是介绍SQL删除重复项 及 字段大小写敏感,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

delete from Student
  where Name in( select Name from Student group by  Name having count(Name) > 1) and 
 ID not in(select  max(ID) from Student group by  Name having count(Name) > 1 )

Student是要删除的目标表

Name是对应重复的字段

二 大小写敏感

select *
from Student
where Name collate Chinese_PRC_CS_AS != UPPER(Name )

把Name字符串全部改为大写。

collate解释上说其是选择排序用,但也可用在查询区分大小写上,如:
select * from tablename where    column1 collate Chinese_PRC_CS_AS= 'Xxxx'
select * from s where sn collate Chinese_PRC_CS_AS like 'L%'

CI     指定不区分大小写,CS     指定区分大小写。
AI     指定不区分重音,AS     指定区分重音。 
Omitted     指定不区分大小写,WS     指定区分大小写。
 



这篇关于SQL删除重复项 及 字段大小写敏感的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程