Beginner to T-SQL [Full Course]

Поділитися
Вставка
  • Опубліковано 21 лис 2024

КОМЕНТАРІ • 86

  • @chetangupta-eq6ob
    @chetangupta-eq6ob 2 роки тому +8

    Recently join with this company.. Employees are very responsive... Services are good also get a good response from it 👏👏

    • @PragmaticWorks
      @PragmaticWorks  2 роки тому

      Thank you for the comment! Glad you are enjoying our content!

  • @rewrite__life
    @rewrite__life 2 роки тому +5

    Best instructor on UA-cam

  • @GuilhermePalazzoRodrigues
    @GuilhermePalazzoRodrigues 2 роки тому +15

    This is awesome. I've been working with T-SQL since march and this is the training that could have made my life a lot easier. You lay out every fundamental skill that I use every day in my job, congrats!

  • @potathoe1170
    @potathoe1170 2 роки тому +5

    For those who didn't already know, if you click "Show More" on the description and scroll to the bottom of it there is a very helpful "Key Moments" section for those looking for timestamps.
    Great training! Thank you for uploading!

  • @parthanirmalia2453
    @parthanirmalia2453 Рік тому

    Awesome Video for any one new to SQL

    • @PragmaticWorks
      @PragmaticWorks  11 місяців тому

      Glad you liked it! Thank you for learning with us.

  • @inzemohd2319
    @inzemohd2319 2 роки тому +5

    Clear, Filtered, Understandable lecture. Worth the time. Thank you so much for this.
    It'd be a plus if you'd have explained primary key, foreign key etc, (Not complaining, just a thought). Thanks again

  • @saloriasaxon7323
    @saloriasaxon7323 2 роки тому +31

    Just started the course, but will there be any time stamps in this one? It helps a lot when starting and
    stopping. I made these for myself which are not best examples:
    0:00 - 01_Introduction
    26:00 - 02_T-SQL Functions and Expressions:
    59:08 - 03_null_top_distinct_where.sql
    2:03:29 - 04_Joins_Union_Cast_and_Convert.sql
    05_Aggregate queries.sql

    • @mohamedyasin7505
      @mohamedyasin7505 4 місяці тому

      there is no T-SQL Functions and Expressions in the video, it's simple SQL!

  • @vascoandrade4688
    @vascoandrade4688 2 роки тому +1

    Excellent trainer! Everything seems easy, despite its complexity! Congratulations, Mitchell Pearson!

  • @benaiahbasehan1082
    @benaiahbasehan1082 2 місяці тому

    Very helpful as a database student ❤

  • @jmcc000
    @jmcc000 2 роки тому +2

    Thanks. I have only started this course and already picked up a few things that were good for my revision. Subbed.

  • @Ganeshay-09
    @Ganeshay-09 Рік тому

    Superb tutorial very helpful and good content...many Many thanks 👍🙏 this tutorial my problem resolved

  • @JamesNjanjo
    @JamesNjanjo 3 місяці тому

    Thank Alot Christina, eagerly waiting for intermediate and Advanced tutorials from you on the same topic..👏👏👏🙏🙏

  • @ThePhoebe76
    @ThePhoebe76 Рік тому +1

    Great job! Everything is clear and easy even for beginners. Thank you!

  • @tacijjola
    @tacijjola Рік тому

    Super useful. Thank you very much Pragmatic Works

  • @luisfernandomacedo1451
    @luisfernandomacedo1451 Рік тому

    This class is brilliant!

  • @LeomarLosarito
    @LeomarLosarito 2 роки тому +1

    Thank you for sharing your knowledge. More power.

  • @fadwa2413
    @fadwa2413 Рік тому

    Mitchell,YOU ARE THE LEGEND, GOD BLESS

  • @jahmeheru
    @jahmeheru 2 роки тому +2

    Excellent job

  • @tamerjuma
    @tamerjuma Рік тому

    This is the greatest SQL class ever! thank you so much for the outstanding presentation and the great content.
    Can we still connect to the SQL database?

  • @a.useronly2266
    @a.useronly2266 2 роки тому +2

    This is so amazing and great, thanks a lot

  • @Raisincookies55
    @Raisincookies55 Рік тому

    Thank you for the great content

  • @amirrezajamadi4179
    @amirrezajamadi4179 5 місяців тому

    I love u guys, please keep up the good work!

  • @haymanotachn2234
    @haymanotachn2234 2 роки тому +1

    What an amazing:) Thank you a lot

  • @ManaviVideos
    @ManaviVideos 2 роки тому +2

    Informative!!

  • @linusmuhanguzi5453
    @linusmuhanguzi5453 Рік тому

    very clear

  • @rongjerhsugm
    @rongjerhsugm 9 місяців тому

    awesome.thanks you~

  • @wondatowudneh6898
    @wondatowudneh6898 2 роки тому +1

    Awesome !!!

  • @michaell1884
    @michaell1884 2 роки тому +1

    Thanks!

  • @ishimwealin
    @ishimwealin Рік тому

    Thank you is there part 2

  • @luisafernandalondonoquinte1885

    worked it really works. thanks so much. this video saved me hundreds of dollars on subscription.

  • @timtanhueco1990
    @timtanhueco1990 2 дні тому

    Hi!
    I know it's 2 years late, but where's the database set for this SQL lesson?

  • @Sandroider
    @Sandroider 2 роки тому +1

    Is there a history in Results / console panel to see previous query results?

    • @saidakishore
      @saidakishore 2 роки тому

      Use 3rd party tools like ssms boost

  • @joaofigueiredo2327
    @joaofigueiredo2327 Рік тому +2

    Hello Peter, is the server still on? Thanks.

  • @arjunroyalnaga2588
    @arjunroyalnaga2588 Рік тому

    Ever thing is fine from your side who want to learn SQL they have spend some time to for watch this video

  • @ronniewest5652
    @ronniewest5652 Рік тому

    Agree thank you

  • @ravijain6279
    @ravijain6279 2 роки тому

    01:28:40 (firstname, middlename, lastname - space problem - solved)
    Select Top 100
    FirstName,
    MiddleName,
    LastName,
    FirstName + Coalesce(' ' + MiddleName + ' ', Null,' ') + LastName As FullNameCoalesce,
    Concat(FirstName + ' ', MiddleName + ' ', LastName) As fullNameConcat,
    FirstName + Isnull(' ' + MiddleName + ' ', ' ') + LastName As FullNameIsNull
    From
    Person.Person

  • @5892432
    @5892432 2 роки тому +2

    Hello , anyone know if the server is still available? Thanks

  • @clpzlava8981
    @clpzlava8981 11 місяців тому

    question: each employee have a position, however a lot of employees keep moving around when a position becomes available. how do i track this movement?

    • @austinlibal
      @austinlibal 8 місяців тому

      This is more of a data modeling problem. Slowly changing dimensions can be handled several ways and it depends on what you’re using the data for to determine if SCD 1 or 2 should be used. Most likely you would want to use SCD2 and would need to have some ETL logic built in to ensure you keep old records as well as new records with updates.

    • @clpzlava8981
      @clpzlava8981 8 місяців тому

      thanks @@austinlibal

  • @Miviene13
    @Miviene13 11 місяців тому

    2:22:30 Could you explain me why theres more for SalesPersonID? What I would expect is getting more for * if there would be some NULLS. So what might be the reason?

  • @farazaziz-en2ph
    @farazaziz-en2ph 10 місяців тому

    T-SQL 😊

  • @Jeff-dl7pp
    @Jeff-dl7pp Рік тому

    Hello, I attempted to use the credentials provided in the PDF document and got an error. I have emailed the training email given in the description. Hope to hear from you all soon. Thank you.

    • @Jeff-dl7pp
      @Jeff-dl7pp Рік тому

      disregard, updated the Connection Properties > Database , and was able to connect

  • @donnaorphan738
    @donnaorphan738 2 роки тому +1

    Hi! Is the server still available? I'm trying to login but I get error 18456 which indicates a bad password or user name. Help!

    • @ThePhoebe76
      @ThePhoebe76 Рік тому

      Yes, it is. Maybe you should check the password again?

  • @zayne968
    @zayne968 2 роки тому +1

    Hi. Where can I download the test files?

    • @PragmaticWorks
      @PragmaticWorks  2 роки тому +1

      ✔ Download student files - share.hsforms.com/1UL7yaNt8QN-Kk1ijRjqvgQ8xue

    • @malaksayed897
      @malaksayed897 2 роки тому

      @@PragmaticWorks thanks

  • @manojtalwar7407
    @manojtalwar7407 Рік тому +1

    Hi there, I cannot connect and am getting the error "Microsoft SQL Server, Error: 18456". Is the service available? I tried the password a few times as per the pdf but no joy. Pls advise. Many thanks.

    • @manojtalwar7407
      @manojtalwar7407 Рік тому +1

      Sorry, connected now after giving the Database name.

    • @Sufailps
      @Sufailps Рік тому

      @@manojtalwar7407 can you help , how to connect

    • @abrilgonzalez7892
      @abrilgonzalez7892 Рік тому

      which what it is?@@manojtalwar7407

  • @mohamedyasin7505
    @mohamedyasin7505 4 місяці тому

    This is not T-SQL rather it is simply SQL in the form SQL Server syntax!

  • @JoshTheCoder
    @JoshTheCoder 4 місяці тому

    I'm 3 minutes into this video and found myself realizing my greatest fear would be to be across the table from someone who has written multiple textbooks on Microsoft tools and having to play them in Ticket to Ride...

  • @flexambassador
    @flexambassador 2 роки тому

    Michelle pls help me , am loosing my head learning alone, pls I'd like to reach out to direct mentorships into data analysis or buisness analysis..lets discuss all i need to know and how to work on it..pls reply

    • @Quitter2222
      @Quitter2222 2 роки тому +4

      Remove the data base and remove the business analysis

  • @jimz6076
    @jimz6076 7 місяців тому

    The student files link has expired. Is there any other place to get the student files?

    • @PragmaticWorks
      @PragmaticWorks  7 місяців тому +1

      You can access the student files at share.hsforms.com/1UL7yaNt8QN-Kk1ijRjqvgQ8xue

    • @jimz6076
      @jimz6076 7 місяців тому +1

      @@PragmaticWorks You are the best!!!

  • @VaishnaviChauhan-f6g
    @VaishnaviChauhan-f6g 9 місяців тому

    am not able to connect to database

  • @dinarvasquez6114
    @dinarvasquez6114 7 місяців тому

    08:35

  • @namilewis2820
    @namilewis2820 2 роки тому

    Whats the pw?

  • @julzbuzz7243
    @julzbuzz7243 Рік тому

    How is this T-SQL though?🙃

    • @Thomasw04
      @Thomasw04 Рік тому

      It is. What do you mean? If it was f.e postgreSQL then i could use to_char , that statement wont work since its t-sql.

    • @mohamedyasin7505
      @mohamedyasin7505 4 місяці тому

      @@Thomasw04 It's not T-SQL, rather it's simply a SQL Server version of SQL and that's why to_char didn't work with you but that doesn't mean it's T-SQL!

    • @mohamedyasin7505
      @mohamedyasin7505 4 місяці тому

      it's not, it's a deceiving title!

  • @AdekunleMuritala-e9f
    @AdekunleMuritala-e9f 3 місяці тому

    Where can I download the demo file

    • @PragmaticWorks
      @PragmaticWorks  3 місяці тому

      Hi, the files can be downloaded from the description of the video. Here is the link also:
      share.hsforms.com/1UL7yaNt8QN-Kk1ijRjqvgQ8xue

  • @RadosławJakubowski-p4g
    @RadosławJakubowski-p4g Рік тому +1

    Hi there, I cannot connect and am getting the error "Microsoft SQL Server, Error: 18456". Is the service available? I tried the password a few times as per the pdf but no joy. Pls advise. Many thanks.