.create tables

Creates new empty tables as a bulk operation.

The command must run in context of a specific database.

Requires Database user permission.

Syntax

.create tables TableName1 ([columnName:columnType], ...) [, TableName2 ([columnName:columnType], ...) ... ] [with ( [docstring = Documentation] [, folder = FolderName] )]

If any table already exists, the command will return success.

Example

.create tables 
  MyLogs (Level:string, Timestamp:datetime, UserId:string, TraceId:string, Message:string, ProcessId:int32),
  MyUsers (UserId:string, Name:string)