博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sql server 2005 (select查询语句用法)
阅读量:6295 次
发布时间:2019-06-22

本文共 981 字,大约阅读时间需要 3 分钟。

select * from userInfo where age like '2[25]'

功能:查询userInfo表中age字段,所有以2开头,且第二位是2或5的记录。

 

select * from userInfo where name like '_娜_'

功能:查询userInfo表中name(char(6))字段所有中间一个字是“娜”的记录。下划线“_”代表的是两个任意字符,如上:名为“谢娜娜”或“谢娜”等的记录将会被查询出来

 

select * from userInfo where address like '%川%'

功能:查询userInfo表中address字段所有包含“川”字的记录

 

select * from userInfo where name like '[m-n]%'

功能:查询所有userInfo表中所有name字段是以m或n开头的记录

 

select * from userInfo where name like 'm[^i]%'

功能:查询userInfo表中name字段所有以m开头、第2个字母不是字母c的名称

 

select * from userInfo where ID in(1,2)

功能:查询userInfo表中所有ID等于1或者2的记录

等同于

select * from userInfo where ID='1' or ID='2'

 

select * from userInfo where memo like '20/%' escape '/'

功能:查询memo字段值为20%的所有记录,但是在sql Server里面%为通配符如果不加就会有其他意思

例如:select * from userInfo where memo like '2%'   就跟上面查到一样的记录,这一句的功能是查到memo字段的值以2开头的记录。20%也是以2开头的。这样就会出现问题。所以用转义字符还是很必要的。

 

select count(distinct ProdID) '产品种类' from userInfo

功能:查询出来有多少种产品,distinct就是查询不重复的记录,加上count()就是不重复的记录的总数了

转载于:https://www.cnblogs.com/toge/p/6114734.html

你可能感兴趣的文章
Docker之功能汇总
查看>>
!!a标签和button按钮只允许点击一次,防止重复提交
查看>>
(轉貼) Eclipse + CDT + MinGW 安裝方法 (C/C++) (gcc) (g++) (OS) (Windows)
查看>>
还原数据库
查看>>
作业调度框架 Quartz.NET 2.0 beta 发布
查看>>
mysql性能的检查和调优方法
查看>>
项目管理中的导向性
查看>>
Android WebView 学习
查看>>
(转)从给定的文本中,查找其中最长的重复子字符串的问题
查看>>
HDU 2159
查看>>
spring batch中用到的表
查看>>
资源文件夹res/raw和assets的使用
查看>>
UINode扩展
查看>>
LINUX常用命令
查看>>
百度云盘demo
查看>>
概率论与数理统计习题
查看>>
初学structs2,简单配置
查看>>
Laravel5.0学习--01 入门
查看>>
时间戳解读
查看>>
sbin/hadoop-daemon.sh: line 165: /tmp/hadoop-hxsyl-journalnode.pid: Permission denied
查看>>