- 博客(13)
- 收藏
- 关注
原创 MySQL在命令提示栏上的操作和基本指令
删除表中的字段:delete from 表名 drop column 字段名;添值:insert into 表名 (列名) values (值);建表:create table 表名 (字段名+空格+数据类型);删除字段中的值:delete from 表名 where 条件;查看别的数据库的表格:show tables from 表名;查询建表时的结构:show create table 表名;删除表:drop table 表名;查看表:show tables;查看表结构:desc 表名;
2023-05-04 19:59:55 82
原创 mysql第六章习题
select a.tno as 工号,a.tname as 姓名,b.cno as课程号,b.location as 上课地点 from teacher a,lecture b。select a.sno as a的课程号,a.sno as 学号,a.sno as成绩,b.cno as b的课程号,b.grade as b的成绩。select a.tno as 工号,a.tname as 姓名,b.cno as课程号,b.location as 上课地点。
2023-05-04 19:55:58 243
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人