select * from tableName;
select Field from tableName;
select count(*) from tableName;
select count(1) from tableName;
select * from tableName where 条件1 and 条件2;
select * from tableName where 条件1 or 条件2;
select * from tableName where Field in(value1,value2);
select * from tableName where Field between a and b;
select * from tableName where Field not in(value1,value2);
select * from tableName where Field not between a and b;
select * from tableName where Field like "要匹配的字符%";
select * from tableName where Field rlike "^要匹配的字符";
select * from tableName where Field rlike "要匹配的字符$";