如何将Sql定义为函数列,例如创建表时的User_Id int

时间:2015-05-10 14:12:30

标签: sql-server-2012

我使用SQL在SQL Server 2012 Management Studio中创建表,如何创建名称已在SQL Server中定义的列或列,例如User_IDUser_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)
)

0 个答案:

没有答案