simplerecordingstable.ddl
来自「此程序都是企业级 的数据库开发程序 全面揭示了JAVA对数据库的操作」· DDL 代码 · 共 14 行
DDL
14 行
drop table RECORDINGS;
drop sequence RECORDINGS_SEQ;
create table RECORDINGS (
RECORDING_ID INT not null,
RECORDING_TITLE VARCHAR2(50) not null,
RECORDING_ARTIST VARCHAR2(50) not null,
CATALOG_NUMBER VARCHAR2(20) not null,
LIST_PRICE DECIMAL(7,2) not null,
VERSION INT not null,
constraint RECORDINGS_PK primary key (RECORDING_ID) );
create sequence RECORDINGS_SEQ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?