GO 语言基础+实战+面试(全)
备注:所有查询基于前面章节创建的校园数据库
```
-- 事务tranaction(tx)
-- 开启事务
begin;
-- 课程表插入“把妹”学科
insert into course(name) values('约炮');
-- 教师表插入一位把妹名师
insert into teacher(name,gender,courseid)
values(
'西门程程',
1,
(select id from course where name='约炮')
);
-- 班级表插入BJBamei01班级信息
insert into clazz(name) values('BJYuepao01');
-- 插入学生选课信息
insert into student_course(sid,cid) values(
(select id from student where name='隔壁老王'),
(select id from course where name='约炮')
);
-- 提交事务/回滚事务
-- commit;
rollback;
```
欧阳桫老师博客:https://blog.csdn.net/u010986776 ``
欧阳桫老师博客:https://blog.csdn.net/u010986776 ``
欧阳桫老师博客:https://blog.csdn.net/u010986776 ``
GO语言交流群:721929980``
GO语言交流群:721929980``
GO语言交流群:721929980``