介绍 使用sql语句查询数据。 命令 select 字段1,字段2 from 表名; 例子 查询指定字段: select id,`name` from a; 使用*查询所有字段: select * from a;