--1、 创建TestDB数据库
create database TestDB;
--2、 查看TestDB数据库是否存在
IF EXISTS (SELECT 1 FROM SYSDATABASES WHERE NAME='TestDB') SELECT 1 ELSE SELECT 0;
--3、 在TestDB数据库创建stuInfo学生表,字段:stuSeat座位号,stuName姓名,stuNo学号,stuAge年龄,stuID身价证号码,stuAddress住址
--要求座位号是从100开始的自动编号,姓名不能为空,学号不能重复,年龄只能在0-100,stuAddress默认值为“未填写”
if EXISTS (SELECT * FROM sysobjects WHERE NAME='stuInfo') drop table stuInfo ELSE print 'goon';
create table stuInfo(
stuSeat int IDENTITY(100,1),
stuName varchar(100) not null,
stuNo int unique,
stuAge int check(stuAge between 0 and 100) ,
stuID varchar(100),
stuAddress varchar(100) default '未填写' -- 不能限制not null ,否则会报二进制错误
);
select * from stuInfo;
--4、 给学生表增加stuSex性别字段文章来源:https://www.toymoban.com/news/detail-468169.html
alter table stuInfo add stuSex smallint 文章来源地址https://www.toymoban.com/news/detail-468169.html
到了这里,关于SQL Server基础-SQL语句的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!