我使用SQL在SQL Server 2012 Management Studio中创建表,如何创建名称已在SQL Server中定义的列或列,例如User_ID
,User_Name
,我想要将这些用作表格中的字段
create table Ticket
(
Ticket_Id varchar(10) not null,
TicketType_Id varchar(3) not null,
Ticket_PurchaseDate DateTime null,
LottoDraw_Id int null,
User_Id int null,
Ticket_IsWinner bit null
Primary Key(Ticket_Id, TicketType_Id)
)