SQL查询

Posted shapaozi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL查询相关的知识,希望对你有一定的参考价值。

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查询的主要内容,如果未能解决你的问题,请参考以下文章

sql mysql查询/ db片段

SSM-MyBatis-05:Mybatis中别名,sql片段和模糊查询加getMapper

MyBatis高级特性

sql片段的定义

Laravel 5.8 有条件地插入 sql 片段

Mybatis -- 动态Sql概述动态Sql之<if>(包含<where>)动态Sql之<foreach>sql片段抽取