test_user

SQL的连接

基础数据准备创建两张用于测试的表--用户表create table test_user(id int, name varchar(10));--工作信息表create table test_job(id int, job varchar(10));分别插入两条测试数据--往用户表中插入数据insert into test_user values(1, '张三');inser