📄 createtables.sql
字号:
DROP TABLE Products
GO
DROP TABLE Categories
GO
CREATE TABLE Categories
( CategoryID integer not null primary key
, CategoryName nchar(20) not null
)
GO
CREATE TABLE Products
( ProductID integer not null primary key
, ProductName nchar(20) not null
, CategoryID integer not null
, CONSTRAINT XXX foreign key (CategoryID) references Categories(CategoryID)
)
GO
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -