摘要: 一、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(CourseN 阅读全文
posted @ 2011-08-09 08:57 郑文亮 阅读(586) 评论(0) 推荐(0) 编辑