共用方式為


在 Fabric 的 SQL 資料庫中建立數據表

✅適用於:Microsoft Fabric 中的 SQL 資料庫

在 Fabric SQL 資料庫中建立數據表的方法有很多種。 Fabric 中的主要選擇包括使用 SQL 編輯器來建立數據表、使用網狀架構數據流或網狀架構數據管線在負載時建立數據表。 在本逐步解說中,我們會使用 Fabric 入口網站的 Fabric SQL 資料庫查詢編輯器。

必要條件

使用 T-SQL 查詢建立數據表

  1. 開啟 SQL 資料庫。

  2. 選取主要功能區中的 [ 新增查詢] 按鈕。

  3. 使用 Intellisense 的協助,在 T-SQL 中建立資料表的定義,或使用下列範例:

    CREATE TABLE dbo.products ( 
    product_id INT IDENTITY(1000,1) PRIMARY KEY, 
    product_name VARCHAR(256), 
    create_date DATETIME2 
    ) 
    
  4. 一旦您有想要的數據表設計,請在查詢視窗的工具列中選取 [ 執行 ]。

  5. 如果 物件總管 已經展開以顯示數據表,它會自動重新整理,以在建立時顯示新的數據表。 如果沒有,請展開樹狀結構以查看新的數據表。

使用 Copilot 建立數據表

  1. 開啟 SQL 資料庫。

  2. 選取主要功能區中的 [ 新增查詢] 按鈕。

  3. 在查詢視窗中輸入下列文字做為 T-SQL 批注,然後按 鍵盤上的 Tab

    --create a new table that to store information about products with some typical columns and a monotonistically increasing primary key called ProductID 
    
  4. 幾秒鐘后,Copilot 會根據提示產生建議的 T-SQL 腳本。

  5. 再次按 Tab 鍵以接受 Copilot 的建議。 其外觀應該如下所示:

    --create a new table that to store information about products with some typical columns and a monotonistically increasing primary key called ProductID 
    CREATE TABLE [dbo].[ProductInformation] ( 
    -- Primary Key for the ProductInformation table 
    [ProductID] INT IDENTITY(1,1) PRIMARY KEY, 
    -- Name of the product 
    [ProductName] VARCHAR(100) NOT NULL, 
    -- Description of the product 
    [Description] VARCHAR(MAX), 
    -- Brand of the product 
    [Brand] VARCHAR(50), 
    -- List price of the product 
    [ListPrice] DECIMAL(10, 2), 
    -- Sale price of the product 
    [SalePrice] DECIMAL(10, 2), 
    -- Item number of the product 
    [ItemNumber] VARCHAR(20), 
    -- Global Trade Item Number of the product 
    [GTIN] VARCHAR(20), 
    -- Package size of the product 
    [PackageSize] VARCHAR(50), 
    -- Category of the product 
    [Category] VARCHAR(50), 
    -- Postal code related to the product 
    [PostalCode] VARCHAR(10), 
    -- Availability of the product 
    [Available] BIT, 
    -- Embedding data of the product 
    [Embedding] VARBINARY(MAX), 
    -- Timestamp when the product was created 
    [CreateDate] DATETIME 
    );
    
  6. 檢閱和編輯 Copilot 建議的 T-SQL,以更符合您的需求。

  7. 一旦您有想要的數據表設計,請在查詢視窗的工具列中選取 [ 執行 ]。

  8. 如果 物件總管 已經展開以顯示數據表,它會自動重新整理,以在建立時顯示新的數據表。 如果沒有,請展開樹狀結構以查看新的數據表。

後續步驟