在 Fabric 的 SQL 資料庫中建立數據表
✅適用於:Microsoft Fabric 中的 SQL 資料庫
在 Fabric SQL 資料庫中建立數據表的方法有很多種。 Fabric 中的主要選擇包括使用 SQL 編輯器來建立數據表、使用網狀架構數據流或網狀架構數據管線在負載時建立數據表。 在本逐步解說中,我們會使用 Fabric 入口網站的 Fabric SQL 資料庫查詢編輯器。
必要條件
- 您需要的是現有 Fabric 容量。 如果您沒有,則開始試用 Fabric。
- 請務必 使用管理入口網站租用戶設定在 Fabric 中啟用 SQL 資料庫。
- 建立新的工作區 或使用現有的 Fabric 工作區。
- 建立新的 SQL 資料庫 或使用現有的 SQL 資料庫。
使用 T-SQL 查詢建立數據表
開啟 SQL 資料庫。
選取主要功能區中的 [ 新增查詢] 按鈕。
使用 Intellisense 的協助,在 T-SQL 中建立資料表的定義,或使用下列範例:
CREATE TABLE dbo.products ( product_id INT IDENTITY(1000,1) PRIMARY KEY, product_name VARCHAR(256), create_date DATETIME2 )
一旦您有想要的數據表設計,請在查詢視窗的工具列中選取 [ 執行 ]。
如果 物件總管 已經展開以顯示數據表,它會自動重新整理,以在建立時顯示新的數據表。 如果沒有,請展開樹狀結構以查看新的數據表。
使用 Copilot 建立數據表
開啟 SQL 資料庫。
選取主要功能區中的 [ 新增查詢] 按鈕。
在查詢視窗中輸入下列文字做為 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
幾秒鐘后,Copilot 會根據提示產生建議的 T-SQL 腳本。
再次按 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 );
檢閱和編輯 Copilot 建議的 T-SQL,以更符合您的需求。
一旦您有想要的數據表設計,請在查詢視窗的工具列中選取 [ 執行 ]。
如果 物件總管 已經展開以顯示數據表,它會自動重新整理,以在建立時顯示新的數據表。 如果沒有,請展開樹狀結構以查看新的數據表。