MySQL语法总结
1,关于select columnA,columnB,... into tableA from tableA 语法
MySql不支持 select ... into tableA from tableB 语法,
可以用insert into tableA(columnA, columnB,...) select columnA, columnB,... from tableB where...
发布时间: 2012-09-18 16:21:42 作者: rapoo
MySQL语法总结
1,关于select columnA,columnB,... into tableA from tableA 语法
MySql不支持 select ... into tableA from tableB 语法,
可以用insert into tableA(columnA, columnB,...) select columnA, columnB,... from tableB where...