发布时间:2015-07-17 11:12:59
mysql> select * from tet7;
+----+------+
| id | t1 |
+----+------+
| 1 | 001.........【阅读全文】
发布时间:2015-06-08 14:35:33
关于update关联表的写法存在很多误区,以前我自己也经常犯错....一般的写法有如下几种:update test1 set name =(select name from test2 where test1.id=test2.id);update test1 a,test2 b set a.name=b.name where a.id=b.id;update test2 set test2.name=(select name from test1 where test1.id=test2.id) .........【阅读全文】