select 語句詳解

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