[Solved] SQL query error: “right parenthesis missing missing” [duplicate]
You can’t use AS tbltemp to alias a table in Oracle. The AS keyword can only used to alias columns, not tables. You can either remove the AS keyword, or in this case since you don’t refer to the alias, remove the whole AS tbltemp part. Here’s an SQL Fiddle. It looks like the parser … Read more