码迷,mamicode.com
首页 > 数据库 > 详细

SQL查询

时间:2018-01-26 17:10:46      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:distinct   bsp   font   min   pass   log   查找   word   password   

sql简单查询语句

Use
Dogif --查找user2表的UserName列-- select UserName FROM User2 --查找user2表的UserName列中不相同的值-- select DISTINCT UserName FROM User2 --查找user2表的PassWord列中不相同的值-- select distinct password from user2 //where查询 select *from user2 where username=admin select *from user2 where ID=1 //and 查询 select * from user2 where Username=test and password=123456 //or查询 select *from user2 where username=testor password=123456 //and和or结合查询 select *from user2 where (Username=test and password=123456) or username=admin //order by以xxx为排序查找 以字母进行排序 select username,password from user2 order by username //rder by以xxx为排序查找 以字母.数字进行排序

 

SQL查询

标签:distinct   bsp   font   min   pass   log   查找   word   password   

原文地址:https://www.cnblogs.com/shapaozi/p/8360062.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!