Getting Started with Adobe After Effects - Part 6: Motion Blur

Liked



Upload Image Close it
Select File

This challenge is about finding second highest salary for each department

PLSQL Challenge 2 - Find the second highest salary for each department

  • Sample Script is wrong

    Jacob Sebastian Commented 2 Years ago through ORACLE - PLSQL Challenges
    Thanks Niladri. We updated the script....
    Niladri Biswas
    7 · 21% · 6710
  • Sample Script is wrong

    Niladri Biswas Started 2 Years ago through ORACLE - PLSQL Challenges
    Hi, We cannot use "IDENTITY" for generating sequential numbers in Oracle as we do in Sql server. We have to do so by using Sequence. Steps a) First create a sequence b) Create the table c)Insert record into the table (created at step b) using sequence...
  • Find the second highest salary for each department

    Niladri Biswas Commented 2 Years ago through ORACLE - PLSQL Challenges
    Or use the table alias as select e.*,row_number()over(partition by department order by salary) as rid from PLC2_Employees e...
    rameshd432
    680 · 0% · 48
  • Solution

    Niladri Biswas Commented 2 Years ago through ORACLE - PLSQL Challenges
    Or use the table alias as SELECT e.*, DENSE_RANK()OVER (PARTITION BY department ORDER BY salary desc) Rnk FROM PLC2_Employees e...
    oorabi
    530 · 0% · 69
  • This was simple

    Niladri Biswas Commented 2 Years ago through ORACLE - PLSQL Challenges
    Hi , after I run ur query in Oracle 11g R2 Express Edition, I am getting the error **ORA-00933: SQL command not properly ended** Donot use the alias as A e.g. Select *** From (....) As A .... Instead use Select *** ...
    kukenlever
    934 · 0% · 29
  • A Solution

    Niladri Biswas Commented 2 Years ago through ORACLE - PLSQL Challenges
    The object name "#PLC2_Employees" is wrong . It should be PLC2_Employees...
    sjb500
    1217 · 0% · 20
  • Solution

    Niladri Biswas Commented 2 Years ago through ORACLE - PLSQL Challenges
    The query SELECT *, DENSE_RANK()OVER (PARTITION BY department ORDER BY salary desc) Rnk FROM PLC2_Employees will throw error **ORA-00923: FROM keyword not found where expected** Use the column names instead SELECT Employee...
    oorabi
    530 · 0% · 69
  • Find the second highest salary for each department

    Niladri Biswas Commented 2 Years ago through ORACLE - PLSQL Challenges
    If I run your query , I am getting this error **ORA-00923: FROM keyword not found where expected** The reason is that "employeesal" is an invalid object here. It should be "PLC2_Employees" as specified in teh original question. Second mistake,...
    rameshd432
    680 · 0% · 48
  • get second high salary

    Kirti M.Darji Liked 2 Years ago through ORACLE - PLSQL Challenges
    ...
    Ashraf
    226 · 1% · 197
Previous 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | ... Next
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]