Create Database SampleDBTutorials CREATE DATABASE IF NOT EXISTS SampleDBTutorials; //Create Table OlympicAthletes CREATE ...

//Create Database SampleDBTutorials
CREATE DATABASE IF NOT EXISTS SampleDBTutorials;

//Create Table OlympicAthletes
CREATE TABLE IF NOT EXISTS SampleDBTutorials.dbo.SearchLog
(
        //Define schema of table
        UserId          int, 
        Start           DateTime, 
        Region          string, 
        Query           string, 
        Duration        int, 
        Urls            string, 
        ClickedUrls     string,
    INDEX idx1 //Name of index
    CLUSTERED (Region ASC) //Column to cluster by
    PARTITIONED BY HASH (Region) //Column to partition by
);
English
English (United States)
Deutsch (Deutschland)
German (Germany)
Español (España)
Spanish (Spain)
Français (France)
French (France)
日本語
Japanese
한국어
Korean
Русский
Russian