I'm trying to translate the query below from SQL Server to Oracle SQL. I'm unsure about the IFF condition for the oracle.
SELECT IIF(Grade<8, NULL,Name) As Name ,Grade,Marks
FROM Grade,Students
WHERE Marks>=Min_Mark and Marks<=Max_Mark
ORDER BY Grade DESC, Name ASC;
JOINoperator