mysql中插入序列表

利用序列表来实现列转行:
CREATE TABLE sequence(
id INT UNSIGNED NOT NULL auto_increment PRIMARY KEY
)
往里面插入数据
INSERT INTO sequence VALUES(),(),(),(),(),(),();

原文地址:https://www.cnblogs.com/webttt/p/7850068.html