tables.ddl
来自「java的一系列产品中包括jsme,jmse,j2ee,本文件提供j2ee实现的」· DDL 代码 · 共 14 行
DDL
14 行
drop table studenttable;
create table studenttable (
name varchar(255),
ssn integer primary key,
grade integer
);
create table t_BankAccount (
accountID int(9) primary key,
ownerName char(10),
accountValue float(8)
);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?