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 * from table where col=(value)
そしてこれに相当する
select * from table where col=value
誰かがこれを説明できますか?
あなたが探している説明がわかりません。col=value と col=(value) が同じである理由を意味している場合、これはオラクルだけでなく、他のほとんどのdbs sqlクエリでも完全に有効です。同様の状況が必要な場合は、以下のシナリオを検討してください。
Select * from table1 where col = (Select max(col2) from table2)