Jaa


Taulukon luominen SQL-tietokannassa Fabricissa

Koskee Microsoft Fabricin SQL-tietokantaa

Taulukko voidaan luoda Monella tavalla Fabric SQL -tietokannassa. Ensisijaisiin valintoihin Fabric kuuluu taulukon luomiseen SQL-editorin avulla, jolloin luodaan kuormitettava taulukko Fabric Data Flows- tai Fabric Data -putkilla. Tässä ohjeartikkelissa käytämme Fabric-portaalin Kyselyeditoria Fabric SQL -tietokannalle.

Edellytykset

Taulukon luominen T-SQL-kyselyiden avulla

  1. Avaa SQL-tietokanta.

  2. Valitse päävalintanauhan Uusi kysely -painike.

  3. Luo taulukon määritys T-SQL:ssä Intellisensen avulla tai käytä tätä mallia:

    CREATE TABLE dbo.products ( 
    product_id INT IDENTITY(1000,1) PRIMARY KEY, 
    product_name VARCHAR(256), 
    create_date DATETIME2 
    ) 
    
  4. Kun olet saanut haluamasi taulukon rakenteen, valitse Suorita kyselyikkunan työkaluriviltä.

  5. Jos Objektinhallinta on jo laajennettu näyttämään taulukot, se päivittyy automaattisesti näyttämään uuden taulukon luomisen yhteydessä. Jos näin ei ole, laajenna puu, jotta näet uuden taulukon.

Taulukon luominen Copilotilla

  1. Avaa SQL-tietokanta.

  2. Valitse päävalintanauhan Uusi kysely -painike.

  3. Kirjoita seuraava teksti T-SQL-kommenttina kyselyikkunaan ja paina sarkainta näppäimistölläsi:

    --create a new table that to store information about products with some typical columns and a monotonistically increasing primary key called ProductID 
    
  4. Muutaman sekunnin kuluttua Copilot luo kehotteeseen perustuvan ehdotetun T-SQL-komentosarjan.

  5. Hyväksy Copilotin ehdotus painamalla sarkainta uudelleen. Sen pitäisi näyttää suunnilleen tältä:

    --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. Tarkastele ja muokkaa Copilotin ehdotettua T-SQL:ää vastaamaan paremmin tarpeitasi.

  7. Kun olet saanut haluamasi taulukon rakenteen, valitse Suorita kyselyikkunan työkaluriviltä.

  8. Jos Objektinhallinta on jo laajennettu näyttämään taulukot, se päivittyy automaattisesti näyttämään uuden taulukon luomisen yhteydessä. Jos näin ei ole, laajenna puu, jotta näet uuden taulukon.

Seuraava vaihe