概述
—数据的高级查询–注: –以以下列子为例 create table product ( p_id int primary key identity, p_name varchar(150), p_type int, p_desc varchar(400),–description描述 p_price money, p_style varchar(50) ) insert into product(p_name,p_type,p_desc,p_price,p_style) select ‘古筝’,1,’菊花台’,540.5,’民族乐器’ union select ‘二胡’,1,’菊花’,54.5,’民族乐器’ union select ‘扬琴’,2,’asd’,180,’民族乐器’ union select ‘琵琶’,2,’out5′,230,’民族乐器’ union select ‘钹’,3,’out1′,1888.8,’民族乐器’ union select ‘笛子’,1,null,540.5,’民族乐器’ union select ‘板胡’,1,’花菊台’,1000,’民族乐器’¦lt;br /> select * from product –使用like、between、in进行查询 –使用like进行模糊查询 select * from product where p_desc like ‘菊%’ –注:%可以代替任意长度的字符 select * from product where p_desc like ‘菊_’ –注:_代替一个字符 select * from product where p_desc like ‘out[5, 1]‘ –注:[]括号中出现的任意一个字符 select * [...]
转载于:https://www.cnblogs.com/joypen/archive/2008/11/14/1692978.html
最后
以上就是忧虑玉米为你收集整理的数据的高级查询的全部内容,希望文章能够帮你解决数据的高级查询所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复