📄 sampledb.sql
字号:
#----------------------------
# Table structure for accounts
#----------------------------
create table accounts (
AccountID int(11) not null auto_increment,
AccountName varchar(255) not null,
AccountAddr varchar(255),
primary key (AccountID));
#----------------------------
# Records for table accounts
#----------------------------
insert into accounts values (1, 'A. AAAAA', 'POBox 1, A, 1111') ;
insert into accounts values (2, 'B. BBBBC', 'POBox 2, B, 2222') ;
insert into accounts values (3, 'C. CCCCD', 'POBox 3, C, 3333') ;
#----------------------------
# Table structure for orders
#----------------------------
create table orders (
OrderID int(11) not null auto_increment,
AccountID int(11) not null default '0',
ProductID int(11) not null default '0',
primary key (OrderID));
#----------------------------
# Records for table orders
#----------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -