打开phpstudy,打开Navicat for MySQL,进入要创建表格的数据库,点击上方“查询”按钮,“创建查询”,即可输入代码进行创建. 例: create table class( class_id int not null primary key, class varchar(255) not null, major varchar(255) not null , depart varchar(255) not null);create table stu_info( id int…