我正在试图弄清楚如何在存储过程中使用insert语句。 我想把数据放到表格中
像这样(概念,a,b,c,d,e,f,g)
但我希望得到这样的结果:
concept a b
concept c d
concept d e
concept f g
我想我需要一个字符串吗? 我该如何创建字符串?
答案 0 :(得分:0)
问题是有点模糊但这应该工作你只需要在表中插入多个值,以指示一个新行。
样品:
INSERT INTO example
(Concept, element1, Element2)
VALUES
(Concept,a,b),
(Concept,c,d),
(Concept,e,f),
(Concept,g,h);
输出:
Concept | Element1 | Element2 // table headers
concept | a | b
concept | C | D
concept | e | f //table elements
concept | g | h