Fresher Mock Interview SQL | Technical Round | SQL Interview for Fresher | HR Interview | JAVA

แชร์
ฝัง

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

  • @mugeshm4740
    @mugeshm4740 ปีที่แล้ว +28

    This is not a fresher interview 😑✨..

  • @naveenyadavmokka
    @naveenyadavmokka ปีที่แล้ว +4

    3rd Max sal (co-related sub-query)
    Select e1. ename , e1sal
    From emp as e1
    Where 2=(select count (distinct e2.sal)
    From emp as e2
    Where (e1.sal< e2.sal);

  • @sivap5241
    @sivap5241 ปีที่แล้ว +5

    Delete duplicate records:
    Delete from tablename where rowid in (select rowid from ((select id, count(name) from table_name group by id having count(name) >1) ) ) ;
    3rd maximum salary:
    With qury as
    (Select emp_id, first_name, salary, dence_rank() over(order by salary desc) as Rnk from tablename)
    Select * from qury where Rnk=3 ;

  • @smgyt4550
    @smgyt4550 ปีที่แล้ว +1

    ♥️♥️♥️♥️Sab maa baba ji ki jai is bharmand mein sab bharmand mein sabko acha or swast rakhiye ham sabke maa baba ji♥️♥️♥️♥️

  • @tomlee126
    @tomlee126 4 หลายเดือนก่อน

    when asked "what",..just list the "whats" dont try explaining all "whats" in detail. only when asked

  • @isanju_rai
    @isanju_rai 11 หลายเดือนก่อน +1

    Dense_rank function is wrong re check ✔️

  • @somusagumale6440
    @somusagumale6440 7 หลายเดือนก่อน

    Select country, max (salary) as total sales employee order by county,having county >50000;

  • @SabaMirza-q6w
    @SabaMirza-q6w ปีที่แล้ว +1

    Thanks with this i realized on which stage i am?

  • @nitinsalunke2578
    @nitinsalunke2578 9 หลายเดือนก่อน +1

    types of schema
    1) star schema
    2) semantic shema
    These are two answers you but I am a little confused about whether this second answer is correct or not

  • @osoriomatucurane9511
    @osoriomatucurane9511 11 หลายเดือนก่อน

    Awesome interview and feedback! I have learnt a lot!

  • @kenywest-ex7de
    @kenywest-ex7de ปีที่แล้ว +1

    he is good guy & interviewer as well

  • @hardiknaik9124
    @hardiknaik9124 10 หลายเดือนก่อน

    How to handle null values in a column while inserting data we can use constraints not null

    • @hardiknaik9124
      @hardiknaik9124 10 หลายเดือนก่อน

      For removing duplicates row from the table we can use self join, row_number() partition by windows function,then we can also use min function and add condition in where clause,we can also do it by using cte but it's long procedure and I would not recommend that.

  • @anithaadaka8738
    @anithaadaka8738 ปีที่แล้ว +14

    Very useful for freshers

  • @killer82906
    @killer82906 ปีที่แล้ว +2

    How can i apply for job in this line..i have no rerfrnce yet..bt i completed my sql.

    • @KingJagguYT
      @KingJagguYT 9 หลายเดือนก่อน

      Go for Naukri

  • @devi_drawings
    @devi_drawings 10 หลายเดือนก่อน

    Delete Duplicate Values
    DELETE From Table Name
    Where row_id NOT IN ( SELECT MAX(row_id)
    From table_name
    GROUP BY column_name);

  • @karthick2523
    @karthick2523 ปีที่แล้ว +2

    Thank you it's very useful🎉

  • @nagasai7681
    @nagasai7681 ปีที่แล้ว +4

    Keep posting

  • @madhudaddy
    @madhudaddy ปีที่แล้ว

    madam or sir in u r company job are there myself santhosh reddy

  • @saulgoodmanxd
    @saulgoodmanxd ปีที่แล้ว +1

    These guys applying for freshers

  • @chinnayoutuber5094
    @chinnayoutuber5094 4 หลายเดือนก่อน

    Asking how are you to interview was personal 😅😅😂😂

  • @rahultalwar4847
    @rahultalwar4847 ปีที่แล้ว

    nice interview got good knowledge

  • @aniquekhan5640
    @aniquekhan5640 ปีที่แล้ว

    okay so for further details Hr will contacts you😂😂 ye bhaari tha Raao 😄

  • @jagannathramdasbarde6528
    @jagannathramdasbarde6528 ปีที่แล้ว

    Pls share application support interview

  • @paterugopi3189
    @paterugopi3189 ปีที่แล้ว +1

    Great👍👍👍

  • @ashutoshkhedkar519
    @ashutoshkhedkar519 6 หลายเดือนก่อน

    He's asking How are u? 😂 Is it a fresher interview

  • @Lozzymee
    @Lozzymee หลายเดือนก่อน +1

    Ye fresher interview hai😮😂?

  • @technicalsyntax
    @technicalsyntax ปีที่แล้ว +2

    Great interview

  • @Payroking
    @Payroking ปีที่แล้ว +1

    ❤❤❤❤

  • @supriyayerbage
    @supriyayerbage ปีที่แล้ว +1

    Nice

  • @Payroking
    @Payroking ปีที่แล้ว +1

    😮

  • @bhavya1732
    @bhavya1732 ปีที่แล้ว +6

    Did he got selected or what

  • @neetusingh4765
    @neetusingh4765 ปีที่แล้ว

    Very freshers

  • @ankurghosh2884
    @ankurghosh2884 6 หลายเดือนก่อน

    Useless

  • @devi_drawings
    @devi_drawings 10 หลายเดือนก่อน

    3rd Maximum Salary
    SELECT * FROM
    (
    SELECT department_id
    , hire_date
    , salary
    , DENSE_RANK ( ) OVER(partition by department_id order by Salary DESC) "max_salary"
    FROM employees
    )
    WHERE max_salary = 3;

  • @madhankumar1810
    @madhankumar1810 ปีที่แล้ว +1

    Creat a duplicate table?
    Syntax is
    Creat table # table name
    (
    Emp_id number(5),
    Emp_namr varchar(20)
    );
    Insert values in the table?
    Insert into # table name
    Values(40265,'John');

    • @maheshtiwari2297
      @maheshtiwari2297 ปีที่แล้ว

      U can use insert into tbl_name followed by select * from previous_tblName.

  • @jhansiranimodugumudi8380
    @jhansiranimodugumudi8380 ปีที่แล้ว +1

    Nice