创建表和查看表3.21
标签:
SQL Server
use xk
go
― ― 创建班级表 class
create table class
(classno nvarchar (8)not null, 创建列名为classno 数据类型为nvarchar 长度为8,不允许为空
classname nvarchae (20)not null,
departno nvarchar (2)not null)
go
― ―创建学生表student
create table student
(stuno nvarchar (8) not null, 创建列名为stuno 数据类型为nvarchar长度为8,不允许为空
stuname nvarchar (10) not null,
pwd nvarchar (8) not null,
classno nvarchar(8)not null)
go
― ―创建选课表 stucou
create table stucou
(stuno nvarchar (8)not null,
couno nvarchar (3) not null,
willorder smallint not null,
state nvarchar (2) not null,
randomnum nvarchar (50) null)
go
--查看表
selsct * from 学生选课表
--select 查询的列*所有列
--from 查询表名
--查看学生表
select * from student
--查询班级表
select * from class
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦