1.插入多条记录
insert into test.new_table(t1) values('1'), ('2');
2.复制表结构及数据 create table test.tb2 SELECT * FROM test.new_table; 3.连接字符串函数 select concat(t1,t2) from test.new_table

4.limit 函数分页
SELECT * FROM test.new_table limit 0,2;

  

相关文章:

  • 2021-11-19
  • 2021-04-23
  • 2021-06-12
猜你喜欢
  • 2022-02-05
  • 2022-01-10
  • 2021-10-13
  • 2021-08-04
  • 2022-12-23
  • 2022-01-06
  • 2021-11-02
相关资源
相似解决方案