mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-09 02:02:12 +00:00
11 lines
190 B
MySQL
11 lines
190 B
MySQL
![]() |
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
|