Top LTIMindtree SQL Interview Questions | Data Engineering Career Guide 2024 | Data Engineering

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ธ.ค. 2024

ความคิดเห็น • 3

  • @arsalanansari5066
    @arsalanansari5066 3 หลายเดือนก่อน

    To solve Question 1 use the following query:
    select name,dept,salary from emp e
    where salary = (select max(salary)
    from emp
    where dept = e.dept
    )
    order by dept

  • @sibanandaroutray9721
    @sibanandaroutray9721 2 หลายเดือนก่อน

    This question is for how many years of experience candidates ?

  • @siddu1036
    @siddu1036 2 หลายเดือนก่อน

    For duplicates,
    With CTE
    (Select *, row_number() over (partition by dept,name,salary order by salary) as rnk from emp)
    SELECT * from CTE where rnk = 1
    Will get only the records with out duplicate