1.插入多条记录 insert into test.new_table(t1)values('1'),('2'); 2.复制表结构及数据create table test.tb2SELECT * FROM test.new_table;3.连接字符串函数select concat(t1,t2) from test.new_table 4.limit 函数分页 SELECT * FROM test.new_table limit 0,2;
本文共 223 字,大约阅读时间需要 1 分钟。
1.插入多条记录 insert into test.new_table(t1)values('1'),('2'); 2.复制表结构及数据create table test.tb2SELECT * FROM test.new_table;3.连接字符串函数select concat(t1,t2) from test.new_table 4.limit 函数分页 SELECT * FROM test.new_table limit 0,2;
转载地址:http://kclwa.baihongyu.com/