SQL语句的基本使用
1. 使用SQL语句创建数据库studentsdb。
1 | create database studentsdb; |
#2.使用SQL语句选择studentsdb为当前使用数据库。
1 | use studentsdb; |
#3.使用SQL语句在studentsdb数据库创建数据表student_info、curriculum、grade。
①
1 | create table student_info( 学号 char(4) not null primary key , |
②
1 | create table curriculum( 课程编号 char(4) not null primary key, 课程名称 varchar(50), 学分 int ); |
③
1 | create table grade ( 学号 char(4) not null,课程编号 char(4) not null , 分数 int , primary key(学号,课程编号) |
4.使用SQL语句INSERT向studentsdb数据库的student_info、curriculum、grade表插入数据。
①
1 | insert into student_info(学号,姓名,性别,出生日期,家族地址) values |
②
1 | insert into curriculum(课程编号,课程名称,学分) values |
③
1 | insert into grade(学号,课程编号,分数) values |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Paul!