Learn SQL in 1 Hour | SQL Tutorial for Beginners | SQL Tutorial Step by Step

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

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

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

    SQL Step by Step - th-cam.com/video/uGlfP9o7kmY/w-d-xo.html
    SQL Server Joins : th-cam.com/video/KTvYHEntvn8/w-d-xo.html
    20+ SQL Server Interview Questions : th-cam.com/video/SEdAF8mSKS4/w-d-xo.html
    Software Architecture Interview Questions : th-cam.com/video/AtTgcbLOqMM/w-d-xo.html
    20 MSBI Interview Questions : th-cam.com/video/Nw_sHEKnOUE/w-d-xo.html
    10+ Power BI Interview Questions : th-cam.com/video/Cozc9WNBRt4/w-d-xo.html
    Angular Step by Step Tutorial for Beginners : th-cam.com/video/-9VcW7MBDs8/w-d-xo.html
    25 Angular Interview Questions : th-cam.com/video/-jeoyDJDsSM/w-d-xo.html
    35 Important JavaScript Interview Questions : th-cam.com/video/Zb4dPi7CANU/w-d-xo.html
    30 Important C# Interview Questions : th-cam.com/video/BKynEBPqiIM/w-d-xo.html
    25+ OOPS Interview Questions : th-cam.com/video/u99wAoBjDvQ/w-d-xo.html
    25 Important ASP.NET Interview Questions : th-cam.com/video/pXmMdmJUC0g/w-d-xo.html
    20 MySQL Interview Questions : th-cam.com/video/9hfjC-BpY20/w-d-xo.html
    20 PHP Interview Questions : th-cam.com/video/1bpNSynUrl8/w-d-xo.html
    5 MSBI Interview Questions : th-cam.com/video/5E815aXAwYQ/w-d-xo.html

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

    @27:12 The reason why you were able to select a result set without error at first, but then second-time SQLServer threw error was, you highlighted the top select statement and executed it. :-) Good video though.

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

    I am a beginner, excellent tutorial. Complete with great depth. Thank you very much

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

      U not look like beginners

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

      @@chandanikumari5332 I used to work in IT industry. I used to work as an Incident Handler. My job was not technical. I am now waiting for retirement. Now I am not working, so I started learning for fun and pass time. I was amazed by all the knowledge and aptitude shown by the different IT engineers. I am a matriculate. I have come to the conclusion that today on YOU TUBE you can find so many free courses and if you are determined and hard working, you can acquire a very handy skill set free and then get some sort of diploma. Having a diploma (this is for those of us, who did not go to the university) and real practical knowledge, you can get a job in the IT industry as a junior and then work your way up. All the best, work hard and be determined. You will succeed.

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

    One the best tutorial I have ever seen thank you so much for your knowledge sir I really appreciate 👍👍👍👍👍

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

    the best SQL video i have seen on youtube
    thanks a lot

  • @michaelchrestensen5842
    @michaelchrestensen5842 4 ปีที่แล้ว

    Case expression is the correct terminology. Pointing out if you are taking tests the terminology matters, they can try and trick you! Predicate, clause, statement, expression, search argument, try to make sure you understand the differences is my point.

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

    This is more helpful for beginner Thanks so much

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

    Very useful video. Thank you so much!

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

    Excellent course.. Learnt lot of things.. Thank you Questpond.

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

    Super teaching with good examples

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

    Excellent teaching style! Kudo to you, sir!

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

    thanks for the video. where can i find the dataset for practice these queries

  • @questpondvideos
    @questpondvideos  4 ปีที่แล้ว

    Angular, MVC core starting 16.07.20, Every Thursday at 9 PM. Syllabus explained in the video if needed the syllabus do email at questpond@questpond.com.
    If Interested share this video on your FB, Twitter, and Linkedin and avail today's training free.
    th-cam.com/video/MblRRqld1fg/w-d-xo.html

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

    Amazing tutorial, quite straight and great examples.

    • @franklinalfonso8098
      @franklinalfonso8098 3 ปีที่แล้ว

      i guess it's quite randomly asking but do anybody know of a good site to stream newly released series online ?

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

    THANK YOU SIR,
    FOR TEACHINING. :-)
    GOOD UNDERSDENDING THIS VIDEO CONCEPT FOR SQL,

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

    First I want to complement you with this video, it it clearly build up and takes the viewer through the steps in an ordered manner. I am using it to freshen up my SQL knowledge for a test coming up.
    Secondly I would like present you with an improvement for practice 23. The query you present is not compatible when products have the same cost. When two products share the same value nothing is returned.
    Using the 'SELECT TOP' statement make it so the query is not dependent on the hardcoded COUNT(*) statement.
    When using the code below you can play with the integer after SELECT DISTINCT TOP
    SELECT a.ProductName FROM tblProduct a
    WHERE a.ProductCost =
    (SELECT TOP 1 ProductCost FROM
    (SELECT DISTINCT TOP 3 b.ProductCost
    FROM tblProduct b
    ORDER BY b.ProductCost DESC)
    tblProduct
    ORDER BY ProductCost)
    I know their are obviously more ways to things nonetheless I wanted to point this out. I like you vids, keep up the good work

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

    Thanks for the video. Please i am not able to get the practice sql database. Can some one help me?

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

    Thank you so much sir...its really useful

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

    i really thank you verrrrrrryyyyyyyyy much from the bottom of my heart u gave me a clear understanding about the concept of all the video u did

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

    Good explanation the only thing that is annoying is those red underlines errors. I wished he had removed those errors.

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

    Thank you! Merci! Obrigada!

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

    Thanks a lot sir !

  • @joly-jay4810
    @joly-jay4810 4 ปีที่แล้ว +7

    I am unable to find the PracticeSql file, please provide a link

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

      hi bro did you find Practice SQL file then please provide me the link here...i think it was channel's strategy to attract and get personal details from viewers...

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

    quality of training very neat nd clear.... excellent

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

    Really helpful🙌🏻,!!!

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

    very good session sir....thank you

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

    Please can you share such lab for oracle database students as well
    Where first u create all schema and tables and then we test these scenarios 1 by 1

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

    Thanks for sharing this, greetings from Mexico.

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

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

    Tqu..
    So much sir..
    Ur teaching skill ultimate and even also how can i say to thanks I feel very happy and even also ur explanation is very good.. Even single of doubts was b clear for all.. So tqu so much sir.. For ur previous time... I love it.. Ur explanation..
    Thank 🌹🌹🌹 you Sir...

  • @pinkyadamluv
    @pinkyadamluv 5 ปีที่แล้ว

    Very clear and precise explanation.thanku

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

    thanks you. it is completed teaching and lab.

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

    Any video for microservices?

  • @sujilingannagari6752
    @sujilingannagari6752 3 ปีที่แล้ว

    Thank you

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

    Your course is easy to understand and structured well. Thanks!

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

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

    Sounds good, kinda excited to learn this!

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

    Thank you so much sir. 🥰

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

    Best tutorial for Beginners

  • @nharalhashemi7484
    @nharalhashemi7484 4 ปีที่แล้ว

    Excellent course. really learned a lot. Thank you very much

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

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

    Can someone help from where can we download the sql file ?

  • @hefshineyogeshraut6728
    @hefshineyogeshraut6728 3 ปีที่แล้ว

    Plz help for How to get this all database tables sqlpractice , this can't saw in website.

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

    It is awesome but please i can't get that t1, t2 in self join and correlated querry .
    That is why this t1 and t2??
    Thanks , video clears my concepts.

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

      It's alias name of customer table there is two alias name for same table bcoz it's self join

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

    Good questions

  • @devil..1036
    @devil..1036 5 ปีที่แล้ว +1

    Thank you so much sir for this wonderful Sql tutorial. Your teaching is very clear and straight to the point. I also enrolled and practicing your msbi course. Thanks a lot for your dedication and hard work to teach us.

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

    I couldn't find the link, pls share

  • @SureshKumar-kd3fx
    @SureshKumar-kd3fx 5 ปีที่แล้ว +2

    Super duper teaching with good examples ....
    Very very useful sir :-)
    Thank u so much :-)

  • @PANDURANG99
    @PANDURANG99 15 วันที่ผ่านมา

    How to save 3d matrix in database?

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

    For Practice SQL example 2 anyone can help...?
    So far my query :
    select p.ProductName, sum(productcost) as TotalSales, count(t.Productid_fk) as [Count]
    from tblProduct p
    full outer join
    tblTotalSales t
    on p.ProductId= t.Productid_fk
    group by ProductName
    the problem is with totalsales for count 0 its showing ProductCost as I am taking sum of productcost how to solve this sir..please help me @Questpond

  • @eelapata
    @eelapata 4 ปีที่แล้ว

    Superb video tutorial

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

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

  • @ryandaepic1838
    @ryandaepic1838 4 ปีที่แล้ว

    i had an exam tomorrow! thanks alot!!!

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

  • @nabilamasood4403
    @nabilamasood4403 4 ปีที่แล้ว

    Amazing, Thank you very much.

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

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

    Excellent work.

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

    shubu watch this as many times as you can

  • @ningutej1
    @ningutej1 4 ปีที่แล้ว

    Sir, which IDE u r using?..Please reaply..

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

    Kindly share PracticeSql , unable to find

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

    Thank you so much sir... Pls keep on ur service..

  • @SuvarnaAmbure
    @SuvarnaAmbure 5 ปีที่แล้ว

    Thanks you so much very useful video

  • @sanjaynoudiyal9467
    @sanjaynoudiyal9467 5 ปีที่แล้ว

    A lot of thanks sir... Now I am able to work on SQL.

  • @chandan8779
    @chandan8779 3 ปีที่แล้ว

    can u plz upload the database that u have created so that we can refer your DB ?

  • @ЕвгенийЕфимов-ф6щ
    @ЕвгенийЕфимов-ф6щ 3 ปีที่แล้ว

    this is awesome!

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

  • @qlqe1962
    @qlqe1962 3 ปีที่แล้ว

    Query Design Editor Only Show CrOSS JOIN on every table why Not Others Join?

  • @user-ym6ch2cs9i
    @user-ym6ch2cs9i 5 ปีที่แล้ว +1

    Good explanation

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

    Hi where I can find the practice.sql file?

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

    Time saving one ! ..thanks :-)

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

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

    Can anyone share the example file(InvoiceDB) here?

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

    well done go ahead sir

  • @kiticomedyviral8912
    @kiticomedyviral8912 3 ปีที่แล้ว

    Thanku amazing

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

  • @kanikaarora1979
    @kanikaarora1979 4 ปีที่แล้ว

    Thnx sir for this video 👍👍

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

  • @lavanyag4922
    @lavanyag4922 4 ปีที่แล้ว

    I really thank you very much. . . . i need one help how to get the share file . . .
    i had try but i did not get him. . . .please me. . .

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

    Kindly share database creation queries

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

      Hello Meenakshi you can send email to get the same.

  • @manishmishra6245
    @manishmishra6245 4 ปีที่แล้ว

    Great stuff...there r many other ways of 2nd highest..like nested query or key words like top,limit,rownum or by rank...that should be also there in video other than correlation query.

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

    hello sir could you provide me the sql sheet?

  • @kirand8414
    @kirand8414 5 ปีที่แล้ว

    Thank you very much sir!!Its really really help full for us who r new learners for SQL and in future also please share ur knowledge videos with us thanks in advance and once again thanyou very much sir!!

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

    Hello Dear Instructor How can I get Your E-book Interview books? I have already shared the videos on face book that you give but still i can not Get your free practice interview files on
    thank You Sir

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

    Good explanation Sir 👏

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

    Where I will get the practice db sql

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

      Send us an email for the same.

  • @DanielFlores-iv9lx
    @DanielFlores-iv9lx 5 ปีที่แล้ว +1

    does anyone has the link to download the file to create the database for practicing?

  • @suikasuika4157
    @suikasuika4157 5 ปีที่แล้ว

    Thank you it helped a lot

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

    Awesome

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

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

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

      @@questpondvideos You teach the best.

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

    Can anybody say who to write aa query to display of those students who joined on the same date

    • @sw-tr9lp
      @sw-tr9lp 5 ปีที่แล้ว

      You have to select date

  • @BahawalTV
    @BahawalTV 5 ปีที่แล้ว

    Good tutorial. Thanks.

  • @v.v.rajeshdcgswstechteam8908
    @v.v.rajeshdcgswstechteam8908 4 ปีที่แล้ว +1

    Sir telugu lo kuda chepadaniki try cheyandi sir please

  • @Parthipanx7
    @Parthipanx7 4 ปีที่แล้ว

    Where do i get the practiceSQl file ?

    • @questpondvideos
      @questpondvideos  4 ปีที่แล้ว

      send email at questpond@questpond.com

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

    practise.sql is missing

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

    Any body here can pls let me know if learning from this video is enough for software testers for interview purpose?

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

    sir where is practice file

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

    Waleikoum Salaam brother

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

    sir hindi me bhi btane ki kripa kren👍👍👍

  • @bernardsollano
    @bernardsollano 5 ปีที่แล้ว

    Anyone know where i can get hold of the database?

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

    Spending 1hr worthy of reading 4hrs about basic and some complex queries which can build up on...

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

    Anyone with the link for the file?

    • @questpondvideos
      @questpondvideos  4 ปีที่แล้ว

      Send email at questpond@questpond.com to get the practice file.

  • @gurendrarayala3338
    @gurendrarayala3338 4 ปีที่แล้ว

    Could please share that file

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

    34:00

  • @ttmdaniel
    @ttmdaniel 5 ปีที่แล้ว

    Nice One

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Thanks and do visit www.questpond.com/learn-sql-server-step-by-step/cid9

  • @youtuberatings611
    @youtuberatings611 3 ปีที่แล้ว

    Your display screen is so tiny

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

    I think I'm going to watch that video that teaches me brain surgery in an hour

  • @lavanyag4922
    @lavanyag4922 4 ปีที่แล้ว

    i had try to my best. . .. . but i did not get it him. . . and also send it mail but this domain are not found it. . . . please help me how to get this share file . .

    • @questpondvideos
      @questpondvideos  4 ปีที่แล้ว

      please try to send to questpond@questpond.com

  • @riteshsahu3898
    @riteshsahu3898 4 ปีที่แล้ว

    SQL install ni ho raha kya karu?

  • @srikanthkolla5372
    @srikanthkolla5372 4 ปีที่แล้ว

    I didn't get that what u told to use

  • @marutlagovindu9427
    @marutlagovindu9427 3 ปีที่แล้ว

    Please send pdf

    • @questpondvideos
      @questpondvideos  3 ปีที่แล้ว

      Follow the instruction given in the video and send email to us to get PDF.

  • @joydeepghosh9488
    @joydeepghosh9488 5 ปีที่แล้ว

    Beginners for Sql can try this.