基础篇—SQL语句相关概念及练习
摘要:
一、SQL 基础知识1、DDL(数据定义语言)1)创建数据表--创建数据表create table Test(Id int not null, Age char(20));--创建数据表create table T_Person1(Id int not null,Name nvarchar(50),Age int null);--创建表,添加外键Create table T_Students(StudentNo char(4),CourseNo char(4),Score int,Primary key(StudentNo),Foreign key(CourseNo) References T 阅读全文
posted @ 2011-08-08 20:51 原来... 阅读(1129) 评论(0) 推荐(1)