Recently join with this company.. Employees are very responsive... Services are good also get a good response from it 👏👏
@PragmaticWorks2 жыл бұрын
Thank you for the comment! Glad you are enjoying our content!
@GuilhermePalazzoRodrigues2 жыл бұрын
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!
@PragmaticWorks2 жыл бұрын
Glad it helped!
@saloriasaxon73232 жыл бұрын
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
@mohamedyasin75054 ай бұрын
there is no T-SQL Functions and Expressions in the video, it's simple SQL!
@potathoe11702 жыл бұрын
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!
@PragmaticWorks2 жыл бұрын
Thanks for watching!
@rewrite__life2 жыл бұрын
Best instructor on KZbin
@inzemohd23192 жыл бұрын
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
A very clear tutorial. Is it possible to connect with Azuree Data studio as well? Was not able to on 24. November 2024 - or is the database no longer accessible?
@jmcc0002 жыл бұрын
Thanks. I have only started this course and already picked up a few things that were good for my revision. Subbed.
@PragmaticWorks2 жыл бұрын
Glad it was helpful!
@ThePhoebe76 Жыл бұрын
Great job! Everything is clear and easy even for beginners. Thank you!
@benaiahbasehan10823 ай бұрын
Very helpful as a database student ❤
@parthanirmalia2453 Жыл бұрын
Awesome Video for any one new to SQL
@PragmaticWorks11 ай бұрын
Glad you liked it! Thank you for learning with us.
@JamesNjanjo3 ай бұрын
Thank Alot Christina, eagerly waiting for intermediate and Advanced tutorials from you on the same topic..👏👏👏🙏🙏
@Ganeshay-09 Жыл бұрын
Superb tutorial very helpful and good content...many Many thanks 👍🙏 this tutorial my problem resolved
@tacijjola Жыл бұрын
Super useful. Thank you very much Pragmatic Works
@LeomarLosarito2 жыл бұрын
Thank you for sharing your knowledge. More power.
@PragmaticWorks2 жыл бұрын
Glad it was helpful!
@luisfernandomacedo1451 Жыл бұрын
This class is brilliant!
@joaofigueiredo2327 Жыл бұрын
Hello Peter, is the server still on? Thanks.
@fadwa2413 Жыл бұрын
Mitchell,YOU ARE THE LEGEND, GOD BLESS
@jahmeheru2 жыл бұрын
Excellent job
@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?
@Miviene1311 ай бұрын
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?
@timtanhueco19905 күн бұрын
Hi! I know it's 2 years late, but where's the database set for this SQL lesson?
@58924322 жыл бұрын
Hello , anyone know if the server is still available? Thanks
@a.useronly22662 жыл бұрын
This is so amazing and great, thanks a lot
@PragmaticWorks2 жыл бұрын
Thanks for watching!
@Sandroider2 жыл бұрын
Is there a history in Results / console panel to see previous query results?
@saidakishore2 жыл бұрын
Use 3rd party tools like ssms boost
@Raisincookies55 Жыл бұрын
Thank you for the great content
@linusmuhanguzi5453 Жыл бұрын
very clear
@ishimwealin Жыл бұрын
Thank you is there part 2
@haymanotachn22342 жыл бұрын
What an amazing:) Thank you a lot
@amirrezajamadi41795 ай бұрын
I love u guys, please keep up the good work!
@clpzlava898111 ай бұрын
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?
@austinlibal8 ай бұрын
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.
@clpzlava89818 ай бұрын
thanks @@austinlibal
@luisafernandalondonoquinte1885 Жыл бұрын
worked it really works. thanks so much. this video saved me hundreds of dollars on subscription.
@rongjerhsugm9 ай бұрын
awesome.thanks you~
@michaell18842 жыл бұрын
Thanks!
@ManaviVideos2 жыл бұрын
Informative!!
@PragmaticWorks2 жыл бұрын
Glad to hear it!
@donnaorphan7382 жыл бұрын
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 Жыл бұрын
Yes, it is. Maybe you should check the password again?
@wondatowudneh68982 жыл бұрын
Awesome !!!
@PragmaticWorks2 жыл бұрын
Thanks!!
@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 Жыл бұрын
disregard, updated the Connection Properties > Database , and was able to connect
@arjunroyalnaga2588 Жыл бұрын
Ever thing is fine from your side who want to learn SQL they have spend some time to for watch this video
@ravijain62792 жыл бұрын
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
@manojtalwar7407 Жыл бұрын
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 Жыл бұрын
Sorry, connected now after giving the Database name.
@Sufailps Жыл бұрын
@@manojtalwar7407 can you help , how to connect
@abrilgonzalez7892 Жыл бұрын
which what it is?@@manojtalwar7407
@flexambassador2 жыл бұрын
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
@Quitter22222 жыл бұрын
Remove the data base and remove the business analysis
This is not T-SQL rather it is simply SQL in the form SQL Server syntax!
@jimz60767 ай бұрын
The student files link has expired. Is there any other place to get the student files?
@PragmaticWorks7 ай бұрын
You can access the student files at share.hsforms.com/1UL7yaNt8QN-Kk1ijRjqvgQ8xue
@jimz60767 ай бұрын
@@PragmaticWorks You are the best!!!
@VaishnaviChauhan-f6g9 ай бұрын
am not able to connect to database
@JoshNorris524 ай бұрын
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...
@PragmaticWorks4 ай бұрын
That's funny 🤣🤣 - Mitchell
@namilewis28202 жыл бұрын
Whats the pw?
@farazaziz-en2ph10 ай бұрын
T-SQL 😊
@AdekunleMuritala-e9f3 ай бұрын
Where can I download the demo file
@PragmaticWorks3 ай бұрын
Hi, the files can be downloaded from the description of the video. Here is the link also: share.hsforms.com/1UL7yaNt8QN-Kk1ijRjqvgQ8xue
@julzbuzz7243 Жыл бұрын
How is this T-SQL though?🙃
@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.
@mohamedyasin75054 ай бұрын
@@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!
@mohamedyasin75054 ай бұрын
it's not, it's a deceiving title!
@dinarvasquez61147 ай бұрын
08:35
@RadosławJakubowski-p4g Жыл бұрын
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.