⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 create.sql

📁 ssd7数据库系统练习一
💻 SQL
字号:
Create table BOOK( 
  "Primary Author"         integer(4),
  "Title"                  char(20),
  "ISBN"                   char(10),
  "PublisherID"            integer(4),
  "Edition"                integer(1),
  "Date of Publication"    date,
  "Price"                  numeric(5,2),
  "Book Description"       char(50),
  constraint PK_
)

Create table PUBLISHER
(PublisherID integer(4),
 Name char(20),
 Address char(40),
 Primary key (PublisherID)
)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -