摘要:
一准备表 company.employeecompany.department #建表 create table department( id int, name varchar(20) ); create table employee( id int primary key auto_increm 阅读全文
摘要:
一表 二 查询语法 三 关键字的执行优先级(重点) 四 简单查询 小练习 select concat('<名字:',name,'> ','<薪资:',salary,'>') from employee; select distinct depart_id from employee; select 阅读全文