欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

sql语句

程序员文章站 2022-04-03 10:44:36
...
创建:
create database test
on primary --默认就属于primary文件组,可省略
(
/*--数据文件的具体描述--*/
name = 'test1_data', --主数据文件的逻辑名称
filename = 'D:\test1_data.mdf', --主数据文件的物理地址和名称
size = 3MB, --主数据文件的初始大小
maxsize=50MB, --主数据文件增长的最大值
filegrowth=5% --主数据文件的增长率
)
log on
(
/*--日志文件的具体描述,各参数含义同上--*/
name = 'test1_log',
filename = 'D:\test1_log.ldf',
size = 1MB,
]filegrowth = 1MB
)
go

/*--删除数据库,一般信息会存储在master中,只要查看系统数据库中的sysdatabases表有无信息就行--*/
use master -- 设置当前数据库为master,以便访问sysdatabases表
go
if exists(select * from sysdatabases where name='test1_data')--EXISTS用于检查子查询是否至少会返回一行数据,该子查询实际上并不返回任何数据,而是返回值True或False
--EXISTS 指定一个子查询,检测 行 的存在。

drop database test
go

--创建和删除数据表:
use test
go
if exists(select * from sysobjects where name='stuID')
drop table stuID
create table stuID
(
    ExamNo     int     identity(1,1) primary key,
    stuNo       char(6) not null,
    writtenExam int     not null,
    LabExam     int     not null
)
go

-- 其中,列属性"identity(起始值,递增量)" 表示"ExamNo"列为自动编号, 也称为标识列
alter table 表名
add constraint 约束名 约束类型 具体的约束说明
alter table 表名
drop constraint 约束名

alter table stuID
add constraint UQ_stuNo Unique(stuNo)
alter table stuID
drop constraint UQ_stuNo
/*--添加SQL登录账户--*/
exec sp_addlogin 'xie', '123456'  -- 账户名为xie,密码为123456
--删除xie账户名
exec sp_droplogin 'xie'
/*--在test数据库中添加两个用户(必须存在)--*/
use test
go
  exec sp_grantdbaccess 'xie','123456'
go

-- 提示:SQL Server 中的dbo用户是具有在数据库中执行所有活动权限的用户,表示数据库的所有者(owner),一般来说,
-- 如果创建了某个数据库,就是该数据库的所有者,即dbo用户,dbo用户是一个比较特殊的数据库用户,无法删除,且此用
-- 户始终出现在每个数据库中
/* --给数据库用户授权-- */
-- 授权的语法如下
-- grant 权限 [on 表名] to 数据库用户

use test
go
  grant select,update,insert on stuMarks to xie
  grant create table to xie
go
相关标签: sql 创建