MySql(二)


MySql查询

基本数据查询

全表查询

select * from tableName;

MySql(二)

查询部分字段

select Field from tableName;

MySql(二)

计数1

select count(*) from tableName;

MySql(二)

计数2

select count(1) from tableName;

MySql(二)

条件过滤

and (并且)

select * from tableName where 条件1 and 条件2;

MySql(二)

or(或者)

select * from tableName where 条件1 or 条件2;

MySql(二)

in(包含)

select * from tableName where Field in(value1,value2);

MySql(二)

between ··· and ···(范围检查)

select * from tableName where Field between a and b;

MySql(二)

not (否定结果)

select * from tableName where Field not in(value1,value2);

MySql(二)

select * from tableName where Field not between a and b;

MySql(二)

%(匹配任意字符)

select * from tableName where Field like "要匹配的字符%";

MySql(二)

^(匹配以···开头的字符)

select * from tableName where Field rlike "^要匹配的字符";

MySql(二)

$(匹配以···结尾的字符)

select * from tableName where Field rlike "要匹配的字符$";

MySql(二)

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/282057.html

(0)
上一篇 2022年8月24日
下一篇 2022年8月24日

相关推荐

发表回复

登录后才能评论