當我右鍵單擊表名我點擊select top 1000 rows
,這讓我這個劇本如何在SQL Server 2008 Management Studio中查看錶格的腳本?
/****** Script for SelectTopNRows command from SSMS ******/
SELECT TOP 1000 [response_id]
,[submitter]
,[submitterdept]
,[employee]
,[employeedept]
,[rating1]
,[rating2]
,[rating3]
,[rating4]
,[rating5]
,[commentpositive]
,[commentnegative]
,[star]
,[commentdate]
,[status]
,[approvedby]
,[approveddate]
,[execoffice_status]
,[execoffice_approvedby]
,[execoffice_date]
FROM [Intranet].[dbo].[CSEReduxResponses]
如何看錶的腳本?沒有任何我嘗試過的時候,我右鍵單擊表格,我可以看到腳本。
我有'10所以...嘗試右鍵單擊表名稱和腳本as ...菜單。 – rheitzman
右鍵單擊時沒有MENU選項。 – user3408399
你想查看'select top 10 rows'? –