Reputation: 3105
I have some knowledge about SQL but a complete novice in Oracle. The following sql statement will execute properly in SQL Server. But this doesn't execute in Oracle and throws an error.
select Field1, * from Table1 where SomeField = 0
Please let know how to execute a similar statement in Oracle. The error recieved is as follows:
ORA-00936: missing expression
00936. 00000 - "missing expression"
Upvotes: 2
Views: 723
Reputation: 17194
Simply try:
select Field1, Table1.* from Table1 where SomeField = 0
Upvotes: 1