标签:基础知识 sqlserver update insert create
基础知识:
DDL(数据定义语言)
create object_name
alter object_name
drop object_name
DCL(数据控制语言)
grant(授权) eg: grant select on dbo.Tstudent to public
deny (拒绝) eg: deny select,update on authors to Mary,John
revoke(取消)
DML(数据操纵语言)
select insert update delete
@代表局部变量或参数
#代表临时表或存储过程(只有当前用户可用)
##代表全局临时表(所有用户都可用)
临时表在系统数据库中tempdb中查找
char适合存放英文,一个字节占用一个字节;
nchar适合存放中文,一个字符占用2个字节
本文出自 “专业@学习” 博客,请务必保留此出处http://6473007.blog.51cto.com/6463007/1600802
标签:基础知识 sqlserver update insert create
原文地址:http://6473007.blog.51cto.com/6463007/1600802