select 语句详解

1. select 的基本语法: select 列名 from 表名 where 条件 条件: <、 > 、= 、 <=、>=、 between、 and、or、like(_、%) 通常查找 -- 查找全部列 select * from employee; -- 按照名字查找 select name, age, phone from employee where name='Tom'; -- 按
相关文章
相关标签/搜索