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!
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!
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
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
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?
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?
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.
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.
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?
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.
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...
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
@@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!
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.
Recently join with this company.. Employees are very responsive... Services are good also get a good response from it 👏👏
Thank you for the comment! Glad you are enjoying our content!
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!
Glad it helped!
Best instructor on RUclips
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!
Thanks for watching!
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
there is no T-SQL Functions and Expressions in the video, it's simple SQL!
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
Can you link a video w that info?
Awesome Video for any one new to SQL
Glad you liked it! Thank you for learning with us.
Very helpful as a database student ❤
Superb tutorial very helpful and good content...many Many thanks 👍🙏 this tutorial my problem resolved
Excellent trainer! Everything seems easy, despite its complexity! Congratulations, Mitchell Pearson!
Thank you!
Thank Alot Christina, eagerly waiting for intermediate and Advanced tutorials from you on the same topic..👏👏👏🙏🙏
Super useful. Thank you very much Pragmatic Works
Mitchell,YOU ARE THE LEGEND, GOD BLESS
Thanks. I have only started this course and already picked up a few things that were good for my revision. Subbed.
Glad it was helpful!
Great job! Everything is clear and easy even for beginners. Thank you!
This class is brilliant!
Thank you for sharing your knowledge. More power.
Glad it was helpful!
Excellent job
worked it really works. thanks so much. this video saved me hundreds of dollars on subscription.
I love u guys, please keep up the good work!
very clear
awesome.thanks you~
This is so amazing and great, thanks a lot
Thanks for watching!
Thank you for the great content
Hello Peter, is the server still on? Thanks.
What an amazing:) Thank you a lot
Hi!
I know it's 2 years late, but where's the database set for this SQL lesson?
Thanks!
Informative!!
Glad to hear it!
Awesome !!!
Thanks!!
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?
Hello , anyone know if the server is still available? Thanks
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?
Ever thing is fine from your side who want to learn SQL they have spend some time to for watch this video
Agree thank you
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!
Yes, it is. Maybe you should check the password again?
Thank you is there part 2
Is there a history in Results / console panel to see previous query results?
Use 3rd party tools like ssms boost
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.
Sorry, connected now after giving the Database name.
@@manojtalwar7407 can you help , how to connect
which what it is?@@manojtalwar7407
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.
disregard, updated the Connection Properties > Database , and was able to connect
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?
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.
thanks @@austinlibal
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
The student files link has expired. Is there any other place to get the student files?
You can access the student files at share.hsforms.com/1UL7yaNt8QN-Kk1ijRjqvgQ8xue
@@PragmaticWorks You are the best!!!
Hi. Where can I download the test files?
✔ Download student files - share.hsforms.com/1UL7yaNt8QN-Kk1ijRjqvgQ8xue
@@PragmaticWorks thanks
This is not T-SQL rather it is simply SQL in the form SQL Server syntax!
am not able to connect to database
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...
That's funny 🤣🤣 - Mitchell
T-SQL 😊
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
Remove the data base and remove the business analysis
Whats the pw?
How is this T-SQL though?🙃
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.
@@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!
it's not, it's a deceiving title!
Where can I download the demo file
Hi, the files can be downloaded from the description of the video. Here is the link also:
share.hsforms.com/1UL7yaNt8QN-Kk1ijRjqvgQ8xue
08:35
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.