【单选题】
A A. CREATE VIEW view_student
AS
SELECT*INTO #Tmp FROM Student
GO
B B. CREATE VIEW view_student
AS
SELECT*FROM Student ORDER BY StudentID
GO
C C. CREATE VIEW view_student
AS
SELECT TOP100*FROM Student ORDER BY StudentID
GO
D D . CREATE VIEW view_student
AS
DECLARE StuID int
SET @stuID = 10001
SELECT * FROM Student WHERE StudentID=@stuID
GO
查看更多