iT邦幫忙

0

SSMS資料庫安裝與資料表建立

  • 分享至 

  • xImage
  •  

這邊使用Microsoft SQL Server Management Studio(SSMS)作為資料庫的安裝範例

  1. 建立[\sqlexpress]資料庫
  2. 輸入SQL指令,建立[CustomerTable]資料表
  3. 插入一筆新資料
  • 起始畫面:

    • 伺服器名稱:\sqlexpress
    • 驗證:Widows驗證,按下[連線]
      https://ithelp.ithome.com.tw/upload/images/20220613/201493678HXMu67tVY.png
  • 新增資料庫

    • 左側[資料庫]上按右鍵,選擇[新增資料庫]
      https://ithelp.ithome.com.tw/upload/images/20220613/20149367Pxsyn3VRX7.png

    • 輸入[資料庫名稱]:MVC_DemoDB,按下確定
      https://ithelp.ithome.com.tw/upload/images/20220613/20149367hqnP147e6l.png

  • 建立資料表

    • 按下[新增查詢]
      https://ithelp.ithome.com.tw/upload/images/20220613/20149367tKmHEbjTjl.png

    • 選擇[MVC_DemoDB]
      https://ithelp.ithome.com.tw/upload/images/20220613/2014936760ceUdAjfd.png

    • 輸入建立資料表指令:
      https://ithelp.ithome.com.tw/upload/images/20220613/20149367ZQDAUwsGyY.png

    • 在編輯處輸入以下SQL指令後,按下[執行]鍵

    CREATE TABLE [dbo].[CustomerTable](
    [CustomerId] [int] PRIMARY KEY NOT NULL,
    [CustomerName] [nvarchar](50) NULL,
    [CustomerTaxId] [nvarchar](15) NULL,
    [CustomerPhoneNumber] [nvarchar](15) NULL,
    [CustomerAdress] [nvarchar](50) NULL)
    
    • 左側物件總管重新整理後,即會出現剛建立的[CustomerTable]資料表
      https://ithelp.ithome.com.tw/upload/images/20220613/201493676CjV8l5HqB.png
  • 插入一筆新資料

    • 按下[新增查詢]
      https://ithelp.ithome.com.tw/upload/images/20220613/20149367tKmHEbjTjl.png

      • 在編輯處輸入以下SQL指令後,按下[執行]鍵
     INSERT dbo.CustomerTable(CustomerID, CustomerName, CustomerTaxId, CustomerPhoneNumber, CustomerAdress)
     VALUES(1,'台積電','22099131','03-5636688','新竹科學園區力行六路8號')
    
  • 查詢剛剛插入的新資料

    • 在左側物件總管中,在[CustomerTable]上按右鍵,選取[選取前1000個資料列]
      https://ithelp.ithome.com.tw/upload/images/20220614/20149367T1vcGeMFfc.png

參考資料

網路資源:
Microsoft SQL Server Management Studio 官方文件


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言