摘要:
单表查询 基础数据查询(重命名,去重,四则运算,拼接) select * from 表名; 查看所有表中所有数据 select * from t1; select 字段名 [as] 新的字段名 from 表名; 临时重命名字段名 select username name,post_comment a 阅读全文
摘要:
多表查询 #表和数据的准备工作 mysql> create table department( -> id int, -> name varchar(20) -> ); mysql> create table employee( -> id int primary key auto_incremen 阅读全文