9.3. 创建数据库表 创建student表 CREATE TABLE IF NOT EXISTS mydb1.student (name STRING, age INT, contact INT ); 创建employ表 create table employee (Id INT, name STRING, age INT,address STRING, salary BIGINT); 9.3.1. 数据库表中插入数据 insert into employee (ID,NAME,AGE,ADD…