mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-29 20:39:56 +00:00
11 lines
190 B
Transact-SQL
11 lines
190 B
Transact-SQL
CREATE DATABASE DemoData;
|
|
GO
|
|
USE DemoData;
|
|
GO
|
|
CREATE TABLE Products (ID int, ProductName nvarchar(max));
|
|
GO
|
|
CREATE SCHEMA Foo;
|
|
GO
|
|
CREATE TABLE Foo.Items (ID int, ItemName nvarchar(max));
|
|
GO
|