Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これをキャストしてvarcharの結果を得ることができますか?
select date_trunc('week', '2013-02-01'::date);
これをvarcharデータ型の「Where」句に使用します
ありがとう
to_charvarchar結果の形式を制御できるようにするために使用します。
to_char
select to_char(date_trunc('week', '2013-02-01'::date), 'yyyy-mm-dd');
TEXTにキャストするだけではいけませんか?
select date_trunc('week', '2013-02-01'::date)::text;