复制create database test; create table test.login( id int primary key,据读 name varchar(20) not null, password varchar(20) not null ); insert into test.login values (1,hong,1234), (2,linxiang,1234), (3,chen,99a9s), (4,luxi,aabe2); 1.2.3.4.5.6.7.8.9.10.11.