所以如果我有一些简单插入查询,
INSERT INTO user_test_score
(test_id, date_occured, number_of_questions, user_id, score)
VALUES (123,'2023-03-30', 100, $1, $2)
我可以用(user_id,score)
的数组在dbeaver中运行它吗?
我所做的是先用一些程序生成所有的查询
谢谢
bind参数只接受单个值,因此它传递数组,而不是值
所以如果我有一些简单插入查询,
INSERT INTO user_test_score
(test_id, date_occured, number_of_questions, user_id, score)
VALUES (123,'2023-03-30', 100, $1, $2)
我可以用(user_id,score)
的数组在dbeaver中运行它吗?
我所做的是先用一些程序生成所有的查询
谢谢
bind参数只接受单个值,因此它传递数组,而不是值
1条答案
按热度按时间cuxqih211#
unnest
可用于将数组转换为表然后插入查询可以写成