目的是为啦以后同步到云服务器
- 当然你也可以从本地导出处后上传到云服务器。
- 在导入到到云服务器的数据库。
- 我就是熟悉熟悉数据库操作。
create database how2java
table:category_
1 | CREATE TABLE category_ ( |
table:drom_
1 | create table dorm_( |
create database Ticket 数据库文档说明
table:trian
1 | create table train( |
1 | insert into train values (null, '和谐号', '武汉', '无锡','2018-7-3|11:00','2018-7-3|17:00',8,4,200,null); |
table:ticket
1 | create table ticket( |
1 | insert into ticket values (null, '无锡', '武汉', '2018-7-3|11:00','2018-7-3|17:00',260,'硬座','动车票','06-15',null); |
table:seller
1 | create table seller( |
1 | insert into seller values (null,'王思聪' ,'666666',null); |
table:station
1 | create table station( |
1 | insert into station values ('武汉站','武汉' ,'湖北',1); |
table:sale
1 | create table sale( |
1 | insert into sale values (null,1 ,'武汉站','2018-7-3|17:00'); |
table:back
1 | create table back( |
1 | insert into back values (null,1 ,'520'); |
- 为啦多表查询方便 先插station 再插trian表
1
2
3
4
5
6insert into station values ('无锡南站','无锡','江苏',1);
insert into train values (null, '和谐号', '太原', '无锡','2018-7-3|11:00','2018-7-3|17:00',8,4,200,'无锡南站');
//以上失败 因为springboot没有用string获取对象 而是id
//写back station 表的多表查询
insert into station values ('无锡南站','无锡','江苏',4);
insert into back values (7,4,'500');
微信点餐数据库sell
create database sell;
table:product_category
create_time
timestamp not null default current_timestamp comment ‘创建时间’, (数据库版本原因,在默认或更新时间戳时只能有一个时间戳列)- defalut 只有一个 放在所有timestamp字段的最前面 不然报错。
1 | -- 类目 |