欢迎来到天天文库
浏览记录
ID:36886281
大小:747.00 KB
页数:126页
时间:2019-05-10
《T-SQL语言程序设计基础》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、AnQingTeachersCollegeDepartmentofComputer&Information数据库原理与应用PrincipleandApplicationofDatabasesystem安庆师范学院计算机与信息学院PrincipleandApplicationofDatabaseSystem10T-SQL语言程序设计基础(1)数据定义语言(DDL)。PrincipleandApplicationofDatabaseSystem(2)数据操纵语言(DML)。PrincipleandApplicationofDatabaseSystem(3)数据控制语言(DCL)。Princi
2、pleandApplicationofDatabaseSystem10.1.1常量、变量与数据类型10.1.1.1常量1.字符串常量PrincipleandApplicationofDatabaseSystem2.二进制常量二进制常量具有前辍0x并且是十六进制数字字符串。这些常量不使用引号。二进制常量的示例为:0xAE0x12Ef0x69048AEFDD010E0x(emptybinarystring)PrincipleandApplicationofDatabaseSystem3.bit常量bit常量使用数字0或1表示,并且不使用引号。如果使用一个大于1的数字,它将被转换为1。Princ
3、ipleandApplicationofDatabaseSystem4.integer常量integer常量由没有用引号括起来且不含小数点的一串数字表示。integer常量必须是整数,不能包含小数点。下面是一些integer常量的示例:18942PrincipleandApplicationofDatabaseSystem5.实型常量PrincipleandApplicationofDatabaseSystem6.日期时间常量时间格式:'14:30:24''04:24PM'日期时间型:April20,200014:30:24PrincipleandApplicationofDatabase
4、SystemPrincipleandApplicationofDatabaseSystem10.1.1.2数据类型1.系统数据类型2.用户自定义数据类型PrincipleandApplicationofDatabaseSystemPrincipleandApplicationofDatabaseSystem1)利用企业管理器定义PrincipleandApplicationofDatabaseSystemPrincipleandApplicationofDatabaseSystem2)利用命令定义数据类型语法格式PrincipleandApplicationofDatabaseSystem
5、sp_addtype'student_no','char(5)','notnull'PrincipleandApplicationofDatabaseSystem10.1.1.2数据类型3.自定义数据类型的删除1)用企业管理器删除自定义数据类型PrincipleandApplicationofDatabaseSystem10.1.1.2数据类型2)利用命令删除自定据类型删除student_no类型的语句为:sp_droptype'student_no'PrincipleandApplicationofDatabaseSystem10.1.1.2数据类型4.利用自定义类型定义字段Princi
6、pleandApplicationofDatabaseSystem10.1.1.2数据类型CREATETABLEstudent(snostudent_noPRIMARYKEY,snamechar(8),ssexchar(2),sbirthdaysmalldatetime,classchar(5))PrincipleandApplicationofDatabaseSystem10.1.1.3变量1.变量1)标识符(1)常规标识符(2)分隔标识符:用""或[]2)变量的分类(1)全局变量(2)局部变量由若干个中文、字母、数字、_、@、$、#构成,#不能开头,最多128字符。Principlea
7、ndApplicationofDatabaseSystem10.1.1.3变量2.局部变量的使用1)局部变量的定义与赋值(1)局部变量的定义(2)局部变量的赋值PrincipleandApplicationofDatabaseSystem10.1.1.3变量例如:创建局部变量@var1、@var2,并赋值,然后输出变量的值。DECLARE@var1varchar(20),@var2varchar(20)SET@var1=
此文档下载收益归作者所有