Think Twice
IT技術メモ | PostgreSQLのメモ
Created: 2022-10-19 / Updated: 2022-10-19

PostgreSQLで処理結果のみ取得する(DUAL表)


目次


取得方法

select句に指定する

単純にselect句に取得したいものを指定します。
from句以降は省略してOKです。

Copy
select <取得したいもの>;

Copy
select '1';
select 'aa' as col1, 'BB' as col2, '123' as col3;
select now();
select current_date;
select cast(1234.56 as integer);

from句に指定する(関数や定数)

関数や定数などはfrom句に指定でも取得できます。

Copy
select * from now();
select * from current_date;
select * from cast(1234.56 as integer);


参考

参考サイト