2

我正在使用 Ruby 通过 shell 通过如下命令调用 postgresql:

%x[ psql -A -F "," -o feeds/tmp.csv -f lib/sql/query.sql -v id_list="#{id_list}" ]

query.sql 看起来像但可以更改:

Select *
From tbl_test
Where id in (:id_list)

查询应解析为:

Select *
From tbl_test
Where id in ('a','b','c')

提前致谢。

4

1 回答 1

2
# before
-v id_list="#{id_list}"

# after
# `join` will separate the values in an array with the string provided
# `map...` the block given to map will surround each item with single quotes
-v id_list="#{id_list.map { |i| "'#{i}'" }.join(', ') }"

# When `id` is an INTEGER you want the `IN` list specified without quotes
# SELECT * FROM tbl_test WHERE id IN (1, 2, 3);
-v id_list="#{id_list.map(&:to_i).join(', ') }"
于 2012-10-13T23:47:48.683 回答