在学习排名第二的mySql过程中,发现它的插入语句可以这样写: use test; create table fruits( fid char(10) not null ,s_id int null ,f_name varchar(100) ,f_price decimal(8,2) ,primary key(fid) ); insert into fruits(fid,s_id,f_name,f_price) values('1',1,'zhang3',10.0) ,('2',1,'li4',