Part7-.简单查询1

场景如下:

1)查询class1表 id = 1 的内容

2)查询studen1 表 grade=100 的内容

实践如下:

 1)select *  from class1 where id=1;

2)select * from studen1 where grade=100;

原文地址:https://www.cnblogs.com/suesky/p/14791457.html