创建表 create table people ( id int ,name ) ) create table toys ( id int ,name ) ,people_id int ) CREATE TABLE sales ( id INT ,people_id INT ,sale ) ,price INT ) 向表中插入数据 insert into people(id,name) ,'chucklu') insert into people(id,name) ,'lihu') insert…