例子:
表名:table
信息:
姓名 学号 成绩
小明 211 80
小红 212 90
小刚 213 95
1、从表PanJueShu_DaoQie 中统计数据的条数
select "count"(*) from 表的名字
select "count"(*) from table
返回的信息:3
2、从表中查询所有的信息
select * from 表的名字
select * from table
返回:表中的所有信息都返回
3、从表中查询某一字段受到约束的所有信息
select * from 表名 where 字段受到限制
select * from table where 成绩>90
返回的信息:小刚 213 95