日期:2014-05-16  浏览次数:20644 次

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...