1.left函数 left(字段,长度):获取指定字段左侧的数据,类似substring函数 2.union / union all 将多个记录合并成一个完整的数据集 3.insert into select 使用selsect语句来代替values语句,需要保证查询出来的记录为单列单条Insert into Table2(field1,field2,...) select value1,value2,... from Table1 4.select into from 将查询的数据存入另一张表…