You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aaaa/dbo.Student.Table.sql

20 lines
1.1 KiB

2 years ago
<EFBFBD><EFBFBD>USE [TEST]
GO
/****** Object: Table [dbo].[Student] Script Date: 2022/10/30 23:57:31 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Student](
[Sno] [int] NOT NULL,
[Sname] [varchar](50) NULL,
[Ssex] [varchar](50) NULL,
[Sage] [int] NULL,
[Sdept] [varchar](50) NULL,
CONSTRAINT [PK_Student] PRIMARY KEY CLUSTERED
(
[Sno] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO