博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL - 创建一个学生表,要求有主键约束和非空约束
阅读量:4649 次
发布时间:2019-06-09

本文共 261 字,大约阅读时间需要 1 分钟。

CREATE TABLE [dbo].[Student](	[ID] [int] NOT NULL,	[Name] [nchar](10) NOT NULL,	[Age] [int] NOT NULL,	CONSTRAINT [PK_Student] PRIMARY KEY CLUSTERED 	(		[ID] ASC	));
posted on
2017-05-17 09:00 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/mthoutai/p/6865758.html

你可能感兴趣的文章