1-----数据访问 2-----数据查询 3-----数据添加 4-----数据修改 5-----数据删除 创建一张nation表并写入三条测试数据 create table nation( `code` ) not null auto_increment, `name` ) not null, primary key (`code`) ); insert into `nation` values (,'人族'), (,'神族'), (,'魔族'), (,'人族'); 一 数据访问(MVC中的…