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
243 B
SQL

create database i3wms;
use i3wms;
create table machine_factory(
id long,
factory_name varchar(50)
);
insert into machine_factory values(1,'geely');
insert into machine_factory values(2,'benz');
insert into machine_factory values(3,'bmw');