Oracle SELECT構文に数値定数を出力する方法
環境
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0
SQL*Plus: Release 12.2.0.1.0
構文
select 数値 as 数値定数 from テーブル名;
数値定数は数字を記述して値を出力します。
使用例
SQL構文
select 567 as CFT from dual;
結果 567
Coding Changes the World
環境
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0
SQL*Plus: Release 12.2.0.1.0
構文
select 数値 as 数値定数 from テーブル名;
数値定数は数字を記述して値を出力します。
使用例
SQL構文
select 567 as CFT from dual;
結果 567