将SQL行分成两部分并进行适当的结构

时间:2019-04-12 23:34:41

标签: javascript python sql c

我有大量查询,例如:

INSERT INTO `test` (`test_id`, `test_title`, `test_pic`, `test_date`, `test_date`, value) VALUES 
(10, 'Dance0', 'NoPhoto.jpg', '1900-01-01 00:00:00', 0), 
(11, 'Dance1', 'NoPhoto.jpg', '1900-01-01 00:00:00', 0), 
(12, 'Dance2', 'NoPhoto.jpg', '1900-01-01 00:00:00', 0), 
(13, 'Dance3', 'NoPhoto.jpg', '1900-01-01 00:00:00', 0)

我想拆分并添加ID,并关闭查询的括号():

(10, 'Dance0', 'NoPhoto.jpg'),
(10, '1900-01-01 00:00:00', 0),
(11, 'Dance1', 'NoPhoto.jpg'),
(11, '1900-01-01 00:00:00', 0), 
(12, 'Dance2', 'NoPhoto.jpg'),
(12, '1900-01-01 00:00:00', 0), 
(13, 'Dance', 'NoPhoto.jpg'),
(13, '1900-01-01 00:00:00', 0), 

这怎么办?一个例子/解决问题的方法,将不胜感激

谢谢

1 个答案:

答案 0 :(得分:0)

最简单的方法是在数据加载后对其进行重组。为此:

select test_id, test_title, test_pic
from test
union all
select test_id, test_date, value
from test;

对我来说还很不清楚为什么您想这样做。原始数据似乎格式正确。

编辑:

如果要创建两个表:

create table table1 as
    select test_id, test_title, test_pic
    from test;

create table table2 as
    select test_id, test_date, value
    from test;