选择数据库USE name <==> describe $name;
SQL语句大小写不敏感
多条SQL语句必须以分号结束
SQL语句,所有空格都被忽略
检索多个列,所有列
select 1,2,3 form xyz;
select * from xyz;(检索不需要的列通常会降低检索和应用程序的性能)
检索不同的行
select 1 from xyz;会列出所有的行
select distinct 1 from xyz;会列出不同的行
注:不能部分使用distinct ,distinct应用于所有列而不仅是前置它的列。比如:distinct 1,2 ;所有行都将被检索出来。
限制结果
select 1 from products limit 5;表示返回不多于5行
select 1 from products limit 5,6;表示从行5开始,返回其后面的6行