How to Sum Multiple Columns in MySQL

When you are working on MySQL, you should know how to sum multiple columns in MySQL. This is useful when you are trying to handle big datasets and are trying to take the sum of multiple columns in your dataset. You need to have some idea about how the sum function works in a column …

Read More

[Fix] Access denied for user ‘root’@’localhost’

The Error “‘Access denied for user ‘root’@’localhost’ “, is an error that is invoked when you are working on a MySQL and are trying to enter your password. Given below is the snippet of the error you might get: I would like to share with you the steps I took to fix the “‘Access denied …

Read More

Fix: “SET PASSWORD has no significance for user ‘root’@’localhost’ in MySQL Server” Error

When I was trying to install the MySQL on Ubuntu 20.04 and run the below command: when run the command “sudo mysql_secure_installation”, Below error is shown: …Failed! Error: SET PASSWORD has no significance for user ‘root’@’localhost’ as the authentication method used doesn’t store authentication data in the MySQL server. Please consider using ALTER USER instead …

Read More