3

我正在尝试从 SQL 导出到 .csv,如果我对其进行硬编码以接受一定数量的参数,它就可以工作。问题是,我希望允许用户请求任意数量的参数并将这些参数传递给 where 子句。代码应该使这一点更加清晰。

create temporary table bdates as

 select tt.date, tt.time, tt.location
 from birthdays as bd
 inner join days as d
   on (d.id = bd.birth_id)
 inner join total_time as tt
   on (bd.date = tt.date and
       bd.time = tt.time and
       d.day_of = tt.location)
 where tt.date in(:date1, :date2) --defined by user at command line
 order by...

\copy bdates to '.csv'

所以我想我想做的是将一个列表传递给 where 子句,而不是显式的 :dates# 变量。例如,一个人可以使用参数“2012-01-04 12:00、2012-02-04 12:00、2012-03-04 12:00”运行脚本,或者只使用两个参数或一个参数。在三个的情况下,字符串将被解析为“2012-01-04 12:00”、“2012-02-04 12:00”、“2012-03-04 12:00”。

我试过 string_to_array()、unnest(regexp_matches(:dates, expression)) 和 regexp_split_to_table(:dates, expression),但我不确定如何进行连接。我尝试过的各种解决方案产生了许多错误,包括:

无法将类型文本 [] 转换为没有时区的时间戳

无法将类型记录转换为没有时区的时间戳

regexp_split 不支持全局选项

WHERE 的参数不能返回一个集合

最后一个尤其​​令人沮丧,我很茫然,希望有任何意见。有一种更简单的方法可以做到这一点,不是吗?谢谢!

4

2 回答 2

2

试试这个:

create table x(d timestamp);

insert into x values
('jan 2, 2012'),
('february 4, 2012 12:00'),
('jan 4, 2012 12:00'),
('march 1, 2012'),
('may 3, 2012');

询问:

with input as
(
  select 
  '2012-1-2, 2012-01-04 12:00, 2012-02-04 12:00, 2012-03-04 12:00'::text
  as d_input
)
,converted_to_array as
(
  select ('{' || d_input || '}')::timestamp[] as d_array
  from input 
)
select d
from x cross join converted_to_array
where d = any(d_array)

输出:

D
January, 02 2012 00:00:00-0800
February, 04 2012 12:00:00-0800
January, 04 2012 12:00:00-0800

现场测试:http ://www.sqlfiddle.com/#!1/43d48/26


您也可以使用 IN,只是将数组取消嵌套到行:

with input as
(
  select 
  '2012-1-2, 2012-01-04 12:00, 2012-02-04 12:00, 2012-03-04 12:00'::text
  as d_input
)
,converted_to_array as
(
  select ('{' || d_input || '}')::timestamp[] as d_array
  from input 
)
select d
from x cross join converted_to_array
where d in (select unnest(d_array))

现场测试:http ://www.sqlfiddle.com/#!1/43d48/29


您也可以将它们全部放在一行中:

select d
from x 
where d in (select unnest( ('{' || '2012-1-2, 2012-01-04 12:00, 2012-02-04 12:00, 2012-03-04 12:00'::text || '}')::timestamp[] ))

但我对此犹豫不决,因为它会在stackoverflow上导致水平滚动条:-)

现场测试:http ://www.sqlfiddle.com/#!1/43d48/31

于 2012-05-03T05:16:11.813 回答
1

你几乎有最简单和最快的方法:

测试表:

CREATE TEMP TABLE t(d date);
INSERT INTO t VALUES
 ('2012-1-1')
,('2012-1-4')
,('2012-2-2')
,('2012-2-4')
,('2012-3-3')
,('2012-3-4');

当您过滤日期而不是时间戳时,您可以简化示例输入:

'2012-01-04 12:00, 2012-02-04 12:00, 2012-03-04 12:00'

到:

'2012-01-04, 2012-02-04, 2012-03-04'

查询(使用任一输入):

SELECT t.*
FROM   t
JOIN  (SELECT unnest(string_to_array(
                    '2012-01-04, 2012-02-04, 2012-03-04', ', ')::date[]) AS d
    ) x USING (d)

也可以通过以下方式完成:

       SELECT regexp_split_to_table(
                       '2012-01-04, 2012-02-04, 2012-03-04', ', ')::date AS d

但是regexp_split_to_table()比较慢。
通常, aJOIN比相对较慢的 选择行更快IN()

于 2012-05-03T07:45:34.517 回答