You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
233 B
MySQL
10 lines
233 B
MySQL
7 years ago
|
create database i3wms;
|
||
|
use i3wms;
|
||
|
|
||
|
create table factory_store(
|
||
|
id long,
|
||
|
store_name varchar(50)
|
||
|
);
|
||
|
insert into factory_store values(1,'geely');
|
||
|
insert into factory_store values(2,'benz');
|
||
|
insert into factory_store values(3,'bmw');
|