2022年8月17日
摘要: 查询岗位名以及岗位包含的所有员工名字 mysql> select post,group_concat(name) from emp group by post; 查询岗位名以及各岗位内包含的员工个数 mysql> select post,count(id) from emp group by pos 阅读全文
posted @ 2022-08-17 22:02 Joker_Ly 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 今日内容 操作表的SQL语句补充 1.修改表名 alter table 表名 remane 新表名; 2.新增字段 alter table 表名 add 字段名 字段类型(数字) 约束条件; alter table 表名 add 字段名 字段类型(数字) 约束条件 after 已经存在的字段; al 阅读全文
posted @ 2022-08-17 21:07 Joker_Ly 阅读(352) 评论(0) 推荐(0) 编辑