Skip to content
Advertisement

Select longest duration time (data type field) and client name SQL

I have these tables:

I want to select project with maximum duration time together with employee name.

I wrote this SQL statement:

But I get an error

ORA-00936: missing expression

Here’s the code: http://sqlfiddle.com/#!4/00720/1

Advertisement

Answer

You have glitches in column names in the fiddle, and an unwanted trailing comma after c.name.

Consider:

In Oracle 12 or higher you can also use a FETCH clause, as suggested by Gordon Linoff. I would recommend WITH TIES to make the query equivalent to your original code:

In older versions, you can use RANK() instead:

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement