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.
最初の列に名前が含まれるようにクエリを並べ替える必要がありますが、残りの列にもデータを入力する必要があります。このクエリを実現するために、オラクルにどのようにエイリアスを実装しますか?
select s.name, s.* from table as s
助けてくれてありがとう。
これを回避する簡単な方法はありません。必要な順序ですべての列を指定する必要があります。
select s.name, s.column1, s.column2, ... from table as s