日期:2014-05-19  浏览次数:20503 次

请教建表问题
有关下列建表语句,说法正确的是(       )。      
Create   table   product  
(
productID   int   not   null   ,  
price   smallmoney   not   null,  
qty     int   not   null,  
total   as   price   *qty  
)
GO  
 
A、           SQL   Sever创建了一张4列的表
B、           SQL   Server创建了一张看上去像4列实际上是3列的表
C、           创建了一张表,只允许total字段为null
D、           插入数据时,total   字段也需要填写

1个或多个答案,请问选什么?

------解决方案--------------------
A
------解决方案--------------------
a和c吧