mysql的查询语句

发表日期:2021-07-26 文章编辑:洛壹网络 文章来源:网站建设公司

mysql的查询语句

查所有
select * from t5;
查一条数据
select *from t5 where id=9;
查符合条件数据对应列的数据
select username from user where id=4;
给字段取别名
select username user form user;
select username as user from user;
-- distinct去除重复值 ,增加多个的时候,必须两个同时不重覆才去除显示
select distinct username,password form user;
查询空值 null
select * from t1 where username is null;
select * from t1 where username is not null;
like的使用方法   用来做搜索
like(包含)%PHP%  包含php
select * from art where content like '%PHP%';

您的浏览器版本太低

请升级您的浏览器: Internet Explorer11 或以下浏览器: Firefox  /  Chrome  /  360极速浏览器