0


【SQL Server】数据库开发指南(二)MSSQL数据库开发对于库、表、数据类型、约束等相关操作

文章目录

一、SQL Server 中的 GO 关键字

GO

是 T-SQL 中的一种分隔符,用于将批处理中的 T-SQL 语句分成多个批次。每个批次在 GO 后面执行。GO 通常被用于以下情况:

  • 在一个脚本中,用于分隔多个 SQL 语句,因为 SQL Server 需要知道每个语句的结束位置。
  • 在一个事务中,用于提交或回滚一个批处理的事务。GO 并不是 T-SQL 的语句或命令,而是由 SQL Server 客户端应用程序识别的一个指令。

以下是一个使用

GO

分隔批处理的示例:

-- 创建新的表createtable Employee (
   ID INTPRIMARYKEY,
   FirstName VARCHAR(50),
   LastName VARCHAR(50),
   Age INT)
GO

-- 向表中插入数据insertinto Employee values(1,'John','Doe',25)insertinto Employee values(2,'Jane','Doe',30)insertinto Employee values(3,'Bob','Smith',40)
GO

-- 查询表中数据select*from Employee

注意:

GO

必须单独一行,不能和其他语句或命令在同一行。另外,GO 后面可以指定一个可选的参数,表示要执行多少次批处理。例如,

GO 5

表示要执行当前批处理 5 次。但是这个功能只能在某些客户端应用程序中使用,而在 SQL Server Management Studio 中不支持。

GO 是用于将 T-SQL 批处理分成多个批次的分隔符,通常在一个脚本中或一个事务中使用。

二、切换不同数据库

SQL Server 和其他数据库一样,都是使用

use

关键字,即可切换成所需要使用的数据库。

use master
go

三、创建、删除数据库

3.1 创建方式1:基本创建(适合演示和学习)

--判断是否存在该数据库,存在就删除if(exists(select*from sys.databaseswhere name ='demoTest'))dropdatabase demoTest
go
--创建数据库,设置数据库文件、日志文件保存目录createdatabase demoTest
on(
    name ='demoTest',
    filename ='c:\data\demoTest.mdf')
log on(
    name ='demoTest_log',
    filename ='c:\data\demoTest_log.ldf')
go

3.2 创建方式2:设置存储位置以及大小等

if(exists(select*from sys.databaseswhere name ='demoTest'))dropdatabase demoTest
go
createdatabase demoTest
--默认就属于primary主文件组,可省略onprimary(--数据文件的具体描述
    name ='demoTest_data',--主数据文件的逻辑名
    fileName ='c:\demoTest_data.mdf',--主数据文件的物理名
    size =5MB,--主数据文件的初始大小
    maxSize =50MB,--主数据文件增长的最大值
    fileGrowth =15%--主数据文件的增长率)--日志文件的具体描述,各参数含义同上
log on(
    name ='demoTest_log',
    fileName ='c:\demoTest_log.ldf',
    size =1MB,
    fileGrowth =1MB
)
go

注意 上述 T-SQL 中,

size

与 maxSize 都是以 MB 为单位,

fileGrowth

可以以 MB 为单位,也可以以百分比为单位。

3.2 创建方式3:同时设置主与次数据文件信息

在 SQL Server 中,可以在创建数据库时同时设置数据文件和数据文件。主数据文件是数据库的主要数据文件,包含数据库的系统表和用户数据。次数据文件是包含用户数据的文件,可以帮助扩展数据库的存储容量并提高性能。

if(exists(select*from sys.databaseswhere name ='demoTest'))dropdatabase demoTest
go
createdatabase demoTest
--默认就属于 primary 主文件组,可省略onprimary(--数据文件的具体描述
    name ='demoTest_data',--主数据文件的逻辑名
    fileName ='c:\demoTest_data.mdf',--主数据文件的物理名
    size =5MB,--主数据文件的初始大小
    maxSize =50MB,--主数据文件增长的最大值
    fileGrowth =15%--主数据文件的增长率),--次数据文件的具体描述(--数据文件的具体描述
    name ='demoTest2_data',--主数据文件的逻辑名
    fileName ='c:\demoTest2_data.mdf',--主数据文件的物理名
    size =2MB,--主数据文件的初始大小
    maxSize =50MB,--主数据文件增长的最大值
    fileGrowth =10%--主数据文件的增长率)--日志文件的具体描述,各参数含义同上
log on(
    name ='demoTest_log',
    fileName ='c:\demoTest_log.ldf',
    size =1MB,
    fileGrowth =1MB
),(
    name ='demoTest2_log',
    fileName ='c:\demoTest2_log.ldf',
    size =1MB,
    fileGrowth =1MB
)
go

五、SQL Server 的基本数据类型

5.1 精确数字类型

在 SQL Server 中,有几种精确数字类型可用于存储精确数字值。这些类型的特点是可以精确地存储小数点前后的数字,并避免精度丢失问题。以下是 SQL Server 中可用的精确数字类型:
类型描述tinyint用于存储非负整数值,范围为 0 到 255。该类型存储为 1 字节的整数。smallint用于存储较小的整数值,范围为 -32,768 到 +32,767。该类型存储为 2 字节的整数。int用于存储整数值,范围为 -2^31(-2,147,483,648)到 2^31-1(+2,147,483,647)。该类型存储为 4 字节的整数。bigint用于存储大整数值,范围为 -2^63(-9,223,372,036,854,775,808)到 2^63-1(+9,223,372,036,854,775,807)。该类型存储为 8 字节的整数。bit可以取值为 1、0 或 NULL 的整数数据类型,每8个bit占一个字节,16bit就2个字节,24bit就3个字节decimal用于存储精确的定点数值,例如货币金额。DECIMAL/NUMERIC 数据类型包含两个参数:精度和小数位数。例如,有效值从 - 10^38 +1 到 10^38 - 1。DECIMAL(10,2) 表示具有最大总位数为 10 位,其中有 2 位小数。numeric与

decimal 

相同money用于存储货币值,范围为 -2^63(-922,337,203,685,477.5808)到 2^63-1(+922,337,203,685,477.5807)。该类型存储为 8 字节的定点数。smallmoney用于存储较小的货币值,范围为 -214,748.3648 到 +214,748.3647。该类型存储为 4 字节的定点数。

5.2 近似数字类型

除了精确数字类型之外,SQL Server 还提供了近似数字类型,可以存储小数点后面一定位数的数字,但是不保证完全准确,因为存储的值会被截断或四舍五入。以下是 SQL Server 中的一些近似数字类型:
类型描述float表示浮点数值数据的大致数值数据类型。浮点数据为近似值;范围-1.79E + 308 至 -2.23E - 308、0 以及 2.23E - 308 至 1.79E + 308realreal 的 SQL-92 同义词为 float(24),范围在-3.40E + 38 至 -1.18E - 38、0 以及 1.18E - 38 至 3.40E + 38

5.3 日期时间类型

类型描述datetime表示某天的日期和时间的数据类型,范围在1753 年 1 月 1 日到 9999 年 12 月 31 日smalldatetime范围在1900 年 1 月 1 日到 2079 年 6 月 6 日

5.5 字符串类型

类型描述char固定长度或可变长度的字符数据类型,范围在范围为 1 至 8,000字节text最大长度为 2^31-1varchar固定长度或可变长度的字符数据类型,最大存储大小是 2^31-1 个字节

5.6 Unicode字符串类型

类型描述nchar字符数据类型,长度固定,在必须在 1 到 4,000 之间nvarchar可变长度 Unicode 字符数据。最大存储大小为 2^31-1 字节ntext长度可变的 Unicode 数据,最大长度为 2^30 - 1 (1,073,741,823) 个字符

5.7 二进制字符串类型

类型描述binary长度为 n 字节的固定长度二进制数据,范围从 1 到 8,000 的值。存储大小为 n 字节。varbinary可变长度二进制数据。n 可以取从 1 到 8,000 的值。最大的存储大小为 2^31-1 字节image长度可变的二进制数据,从 0 到 2^31-1 (2,147,483,647) 个字节

六、SQL Server 判断表或其他对象及列是否存在

6.1 判断某个表或对象是否存在

--判断某个表或对象是否存在if(exists(select*from sys.objects where name ='username'))print'存在';
go
if(exists(select*from sys.objects where object_id = object_id('student')))print'存在';
go
if(object_id('student','U')isnotnull)print'存在';
go

6.2 判断该列名是否存在,如果存在就删除

--判断该列名是否存在,如果存在就删除if(exists(select*from sys.columnswhere object_id = object_id('student')and name ='idCard'))altertable student dropcolumn idCard
go
if(exists(select*from information_schema.columnswhere table_name ='student'and column_name ='tel'))altertable student dropcolumn tel
go

七、SQL Server 中创建、删除表

--判断是否存在当前tableif(exists(select*from sys.objects where name ='classes'))droptable classes
go
createtable classes(
    id intprimarykeyidentity(1,2),
    name varchar(22)notnull,
    createDate datetimedefault getDate())
go
if(exists(select*from sys.objects where object_id = object_id('student')))droptable student
go
--创建tablecreatetable student(
    id intidentity(1,1)notnull,
    name varchar(20),
    age int,
    sex bit,
    cid int)
go

八、SQL Server 中修改的表

8.1 给表添加字段、修改字段、删除字段

--添加字段altertable student add address varchar(50)notnull;--修改字段altertable student altercolumn address varchar(20);--删除字段altertable student dropcolumn number;--添加多个字段altertable student 
add address varchar(22),
    tel varchar(11),
    idCard varchar(3);--判断该列名是否存在,如果存在就删除if(exists(select*from sys.columnswhere object_id = object_id('student')and name ='idCard'))altertable student dropcolumn idCard
go
if(exists(select*from information_schema.columnswhere table_name ='student'and column_name ='tel'))altertable student dropcolumn tel
go

8.2 给表添加、删除约束

--添加新列、约束altertable student 
    add number varchar(20)nullconstraint no_uk unique;--增加主键altertable student  
    addconstraint pk_id primarykey(id);--添加外键约束altertable student
    addconstraint fk_cid foreignkey(cid)references classes(id)
go
--添加唯一约束altertable student
    addconstraint name_uk unique(name);--添加check约束altertable student with nocheck   
    addconstraint check_age check(age >1);altertable student
    addconstraint ck_age check(age >=15and age <=50)--添加默认约束altertable student
    addconstraint sex_def default1for sex;--添加一个包含默认值可以为空的列altertable student 
    add createDate smalldatetime nullconstraint createDate_def default getDate()withvalues;----- 多个列、约束一起创建--------altertable student add/*添加id主键、自增*/  
    id intidentityconstraint id primarykey,/* 添加外键约束*/   
    number intnullconstraint uNumber references classes(number),/*默认约束*/  
    createDate decimal(3,3)constraint createDate default2010-6-1  
go 
 
--删除约束altertable student  dropconstraint no_uk;

九、SQL Server 中操作数据

9.1 插入数据

插入数据的关键字用

insert into values

关键字,也可以像其他数据库一样,使用

insert into select

insertinto classes(name)values('1班');insertinto classes values('2班','2011-06-15');insertinto classes(name)values('3班');insertinto classes values('4班',default);insertinto student values('zhangsan',22,1,1);insertinto student values('lisi',25,0,1);insertinto student values('wangwu',24,1,3);insertinto student values('zhaoliu',23,0,3);insertinto student values('mazi',21,1,5);insertinto student values('wangmazi',28,0,5);insertinto student values('jason',null,0,5);insertinto student values(null,null,0,5);insertinto student 
select'zhangtian' name, age, sex, cid 
from student 
where name ='tony';--多条记录同时插入insertinto student
    select'jack',23,1,5unionselect'tom',24,0,3unionselect'wendy',25,1,3unionselect'tony',26,0,5;

9.2 查询、修改、删除数据

--查询数据select*from classes;select*from student;select id,'bulise' name, age, sex, cid from student 
where name ='tony';select*,(selectmax(age)from student)from student 
where name ='tony';--修改数据update student set name ='hoho', sex =1where id =1;--删除数据(from可省略)deletefrom student where id =1;

十、备份数据、备份表

常用的备份表操作 select

--备份、复制student表到stuselect*into stu from student;select*into stu1 from(select*from stu) t;select*into stu2 from student where1=2;--只备份表结构select*from stu;select*from stu1;select*from stu2;
标签: microsoft sql sqlserver

本文转载自: https://blog.csdn.net/dietime1943/article/details/129928569
版权归原作者 bluetata 所有, 如有侵权,请联系我们删除。

“【SQL Server】数据库开发指南(二)MSSQL数据库开发对于库、表、数据类型、约束等相关操作”的评论:

还没有评论