随笔=day=16,11,30
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随笔=day=16,11,30相关的知识,希望对你有一定的参考价值。
1,查询全表信息?
语法:select * from 表名;
demo: select * from stu;
2,根据条件查询? where 关键字。
demo : select * from stu where sid=2 and sid=5;
3,查询数据返回固定的列?(将*号替换成想要展示的内容即可)
语法: select 列名1,列名2 from 表名;
demo : select sid,sname from stu;
4,给返回的列取别名(小名)?
语法: select 列名1 别名1,列名2 别名2 from 表名;
select 列名1 as 别名1,列名2 as 别名2 from 表名;
5,给表取别名?(作用很大,特别是多表查询的时候)
语法: select * from 表名 别名;
demo : select * from student s;
6,在表中使用比较运算符?
语法: select * from 表名 where 字段 =,>,<,>=,<=,!=等等
demo : select * from s where s.age>18;(年龄大于18的)
以上是关于随笔=day=16,11,30的主要内容,如果未能解决你的问题,请参考以下文章