Friday, May 30, 2025
Top 7 Courses to learn PostgreSQL Database in 2025 - Best of Lot
Friday, May 23, 2025
Grokking the SQL Interview is Available Now !!
Hello guys, I am feeling proud and excited to announce the release of my new book, "Grokking the SQL Interview", a book, which programmers, Data Scientist, Data Analyst, QA, Business Analyst, and Junior DBAs can use to prepare for SQL question on tech interviews. Yes, it's finally available now after 2 years of waiting and you can purchase it now on Gumroad for a special price of just $10.95 (original price $21.90). I thought about this book 4 years ago , and it took really long to work on this as I tried to make it as perfect as possible.
Thursday, May 22, 2025
Top 5 Jose Portilla Courses from Udemy to Learn Python, SQL, and Data Science in 2025 - Best of Lot
Wednesday, May 21, 2025
Top 10 Tools Data Scientists and Machine Learning Developer Should Learn in 2025
Friday, April 4, 2025
How to add Primary key into a New or Existing Table in SQL Server? Example
Wednesday, April 2, 2025
How to increase length of existing VARCHAR column in SQL Server? Example Tutorial
Here is the SQL command you can use to increase the length of a VARCHAR column in SQL Server:
ALTER TABLE Books ALTER COLUMN title VARCHAR (432)
This command increases the length of the title column of the Books table to 432 characters. You can use the same command to increase the length of CHAR, NCHAR, or NVARCHAR columns as well.
Thursday, March 6, 2025
Top 5 Courses to Learn Microsoft SQL Server Database and Transact-SQL in 2025 - Best of Lot
Sunday, February 23, 2025
Top 5 Free Udemy Courses to learn Oracle Database and SQL Online in 2025 - Best of Lot
Monday, February 10, 2025
Top 6 Advanced SQL Books for Experienced Programmers in 2025 - Best of Lot, Must read
Friday, January 24, 2025
Top 4 Books to learn Oracle PL/SQL Programming in 2025 - Best, Must Read
Monday, December 30, 2024
Top 6 Free SQL Courses for Beginners to Learn Online in 2025 - Best of Lot
Wednesday, December 25, 2024
Top 5 Udemy Courses to Learn MySQL in 2025 - Best Of Lost
Tuesday, December 24, 2024
Top 10 Courses to Learn SQL and Database in 2025 - Best of Lot
Wednesday, December 11, 2024
The multi-part identifier XXX could not be bound in SQL SERVER [Solution]
Problem, I was doing join statement and getting this error Msg 4104, Level 16, State 1, Line 69
The multi-part identifier "a.X" could not be bound."
Cause:
I was mixing implicit joins with explicit joins. That is allowed, but you need to be aware of how to do that properly.
The thing is, explicit joins (the ones that are implemented using the JOIN keyword) take precedence over implicit ones (the 'comma' joins, where the join condition is specified in the WHERE clause).