SQL Server Top 30 Interview Questions (in HINDI)

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ม.ค. 2025

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

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

    Very helpful content. Just pointing out that, If, I am not wrong, we can use stored procedure in a select statement provided that SP return a result set.

  • @ajaybhandari9596
    @ajaybhandari9596 10 หลายเดือนก่อน +2

    Nice video , thank you sir.
    Love from chamoli (uttarakhand) !!

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

    Amazing boss.....
    Very easily to crack interview.
    Thank you so much...😊

  • @itspraveenkp1960
    @itspraveenkp1960 2 ปีที่แล้ว

    Very helpful video, ye sab video se mujhe to job mil gayi, because statement to yaad hone se nahi raha but code he explain kar do interviewer ko to jyada easy padta hai😀😀

  • @JagdeepKumar-k7h
    @JagdeepKumar-k7h 3 หลายเดือนก่อน +1

    thanks for this excellent video of learning new things. thank you once again Happy Sir....

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

    You are awesome sir explanation way is very awesome.

  • @naushadali5467
    @naushadali5467 20 วันที่ผ่านมา

    Sir normalisation, view, temp table, transaction pr bhi ak video bnao please

  • @yogeshroy7978
    @yogeshroy7978 2 ปีที่แล้ว

    Love you sir what an explanations of all your videos on interview. Love from Odisha...

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

    nice video sir
    API aur webservice me difference ka ek example bataye please

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

    Thanks for very detailed session

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

    Thank you sir....save my time for interview preparation

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

    one more sql questons and answeers session is requied so pls make it

  • @mehtabidreesi7942
    @mehtabidreesi7942 2 ปีที่แล้ว

    osm and simple explanation wowwwww big respect

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

    Amazing Video 👍👌

  • @poojagaikwad8781
    @poojagaikwad8781 2 ปีที่แล้ว

    Hi Happy Sir, aapke explanation kaafi ache aur in-detail hote hai, toh please can you make videos on sql query interview Q&A for beginners as well as experienced people.

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

    Sir , do you have sql server Vedio for dba interview

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

    As always.....just WAOOO😊

  • @deveshprasad855
    @deveshprasad855 8 หลายเดือนก่อน

    sir its very helpful in interview , thanks

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

    Please make videos on design patterns.

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

    Happy sir please ado.net interview questions per video banayye please

  • @9145-l3f
    @9145-l3f 6 หลายเดือนก่อน

    Thank u so much sir is very helpful 👏

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

    Only one null value allowed in Unique constraint please elaborate as in table multiple null allowed with unique constraint.

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

    Could you please share Azure interview questions videos or links

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

    To find nth highest salary, if it is asked for parameterized, the mentioned query will not work, so in that case we can use row_number or if asks for duplicate also then we can use dense_rank 🙂
    Ex:
    SELECT
    employee_id,
    first_name,
    last_name,
    salary,
    DENSE_RANK() OVER (
    ORDER BY salary DESC
    ) salary_rank
    FROM
    employees;

  • @pbbhosale9
    @pbbhosale9 8 หลายเดือนก่อน

    Superb video

  • @SanjayKumar-qt3xc
    @SanjayKumar-qt3xc 6 หลายเดือนก่อน

    Please share ms sql dba questions

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

    Great

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

    Sir practical video for SQL sir

  • @omkarbelpatre5
    @omkarbelpatre5 2 ปีที่แล้ว

    Thank you so much sir

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

    Dear Sir,
    I am trying for FIFO Stock Valuation as follows using your taught methods like cte and window functions. but not getting done so far. If possible please help us solving this below case solved in a separate video which can be very fast even for lacs of records.
    Input Table:
    DocNo Date InnQty InnRate OutQty OutRate
    1 12/02 12 12.50
    2 12/03 13 ?
    20 12/04 50 10.20
    10 12/10 100 11.25
    11 12/25 25 ?
    14 12/29 150 ?
    We need to populate the data according to FIFO method as following:

    for 1st OutQty(13 Pcs)=12 Pcs @12.50+1Pcs*10.20=160.20/13=13 Pcs@12.32

    for 2nd OutQty(25 Pcs)=25 Pcs @ 10.20 (Because 2nd InnQty has still sufficient Left(50-1-25)=24Pcs for next outqty)

    for 3rd OutQty(150 Pcs)=24 Pcs @10.20+100Pcs*11.25+26 Pcs*11.25 (From Last InnQty as there is no more InnQty left) =1662.30/150=150Pcs@11.08

    Output Query by CTE, Running Total and window functions Approach:
    DocNo Date InnQty InnRate OutQty OutRate
    1 12/02 12 12.50
    2 12/03 13 12.32
    20 12/04 50 10.20
    10 12/10 100 11.25
    11 12/25 25 10.20
    14 12/29 150 11.08

    Regards-
    Sanjeeb

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

    Hi sir aapke video Jo udemy par dekhta hun mobile me chalata hun to har video pe feedback option AA Raha ha iska koi solution ki bar bar nahi aate? Aise padhne me dikkat hota h sir

  • @alihamza-il8dq
    @alihamza-il8dq 2 ปีที่แล้ว

    Make video on python

  • @JITENDRASINGH-fj5uc
    @JITENDRASINGH-fj5uc ปีที่แล้ว

    Can you please upload angular in hindi please sir 🙏

  • @JITENDRASINGH-fj5uc
    @JITENDRASINGH-fj5uc ปีที่แล้ว

    I have angular interview .. all .net concepts clear your hindi video so please sir 🙏 help me

  • @SrivaniPatibanda-PositiviTEA
    @SrivaniPatibanda-PositiviTEA ปีที่แล้ว

    I did not understand nth highest salary of an employee. Because top one among those is 10000. But our result is 6000 . Is that not wrong ? please correct me if my understanding is not right.

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

    Thank you sir

  • @prabhatkumar353
    @prabhatkumar353 5 หลายเดือนก่อน

    Sir please provide list of question in pdf file

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

    Dear Interview Happy,
    Kindly post your all videos only ENGLISH!

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

    Thnk u sir

  • @SonuShwetaComedy
    @SonuShwetaComedy 2 ปีที่แล้ว

    Awesome

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

    want 2nd part

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

    Interview happy...ak channel hain...uska copy lag raha hai

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

    Pdf??

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

    very nice

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

    Sir , I have an issue in the question ( difference between SP and Functions ) Point number 4 .
    Sir Sp can allow Select as well as DML operation too , but functions support only select statement .
    Is this correct ? Or your answer is correct ? ..please clear my confusion .

  • @TechnoMusicGaming
    @TechnoMusicGaming 2 ปีที่แล้ว

    Hi Anurag/Happy,
    Please Share your LinkedIn, I would be more happy to connect you on LinkedIn

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

    Please make videos on design patterns.

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

    thank you sir

  • @omkarbelpatre5
    @omkarbelpatre5 2 ปีที่แล้ว

    Fabulous

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

    Awesome

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

    Thanks sir

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

    Thank you Sir

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

    Awesome