1、查询单个字段; select username from table1;# 字段名 表名 2、查询多个字段:查询多个字段使用逗号隔开字段名 select name,age from table5; #name,age 表示两个字段 3、查询表中的所有字段: select * from table1; #* 表示所有字段 table1表示表名称