Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

SQL##f - SqlState: S1000, ErrorCode: 936, ErrorMsg: [Oracle][ODBC][Ora]ORA-00936: missing expression

Please help in resolving this

1 Solution

Accepted Solutions
suniljain
Master
Master

The options to resolve this Oracle error are: 
  1. This error most commonly occurs when you try to execute a SELECT statement and forget to the list of the columns in the SELECT statement.

For example, you tried to execute the following SELECT statement:

select
from suppliers;


  

You can correct the SELECT statement by including columns after the SELECT keyword. For example:

select supplier_id, supplier_name
from suppliers;

View solution in original post

2 Replies
suniljain
Master
Master

The options to resolve this Oracle error are: 
  1. This error most commonly occurs when you try to execute a SELECT statement and forget to the list of the columns in the SELECT statement.

For example, you tried to execute the following SELECT statement:

select
from suppliers;


  

You can correct the SELECT statement by including columns after the SELECT keyword. For example:

select supplier_id, supplier_name
from suppliers;

Not applicable
Author

Hi it may occur due to oracle connection issue also.