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');