摘要:
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
create table test.tb2
SELECT * FROM test.new_table; 阅读全文
posted @ 2013-09-17 22:45
上校
阅读(455)
评论(0)
推荐(0)
浙公网安备 33010602011771号