Commit 7b697ba4 authored by 11277's avatar 11277

Update 头行保存.md

parent 619d9fcb
...@@ -5,11 +5,7 @@ ...@@ -5,11 +5,7 @@
头行保存在实用中经常用到,头行保存指的是头表和行表(一对多)的数据同时插入,如中途失败则这次事务不进行提交。 头行保存在实用中经常用到,头行保存指的是头表和行表(一对多)的数据同时插入,如中途失败则这次事务不进行提交。
假设我们有两张表 假设我们有两张表
<style>
table th:first-of-type {
width: 100px;
}
</style>
**hls_person(头表)** **hls_person(头表)**
...@@ -20,12 +16,13 @@ table th:first-of-type { ...@@ -20,12 +16,13 @@ table th:first-of-type {
*hls_hobby(行表** *hls_hobby(行表**
|hid| pid |hobby| cause| |hid|pid|hobby |cause|
|:--------: | :-----:|:-----: |:-----:| |:---: | :---: | :---:|:---:|
|1|1|篮球| 因为篮球好玩| |1| 张三 | 篮球 |因为篮球好玩|
|2|1|游泳| 因为游泳好玩| |2| 李四| 游泳 |因为篮球好玩|
|3|1|动画片|最爱看大头儿子| |3|1|动画片|因为动画片好看|
|4|2|画画|梵高的画也不过如此| |4|2|画画|因为画画好玩|
需求是新增一个人的信息以及它的爱好(向hls_person和hls_hobby表新增记录) 需求是新增一个人的信息以及它的爱好(向hls_person和hls_hobby表新增记录)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment