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.
SQL クエリで射影を列だけでなくtable.columnとして返すようにしたい。
例えば
select deal.deal_id from deal where deal.deal_id= '1';
それが返すものは
DEAL_ID ------- 1
私が欲しいのは:
DEAL.DEAL_ID ------------ 1
ASまたは Oracle 引用演算子を使用せずに、どうすればそれを達成できますか?
エイリアスを指定する方法は次のとおりです。
SELECT deal.deal_id "deal.deal_id" FROM deal WHERE deal.deal_id= '1';
これを自動的に行う方法はありません。
これを試すことができます:-
select deal_id "DEAL.DEAL_ID" from deal where deal.deal_id= '1';