Category Archives: MySQL

MySQL SELECT DISTINCT & CONCAT Query with Example


I am using MySQL 8 and was trying to query SELECT DISTINCT with CONCAT on my Linux Mint system. If you have MySQL 5.x, please refer to the official documentations. Here is the query that worked for me..

MySQL is not recognized as an internal or external command


I assume that you already have installed MySQL on your Windows operating system and you are trying to access it through command prompt or PowerShell and you are getting this message MySQL is not recognized as an internal or external command, operable program or batch file.  I completely understand why you are getting this message. … Continue reading MySQL is not recognized as an internal or external command

How to Delete Database in MySql – Terminal


DROP DATABASE mydb; This is the database drop command is. Make sure you are logged in the MySQL server MySQL -u -root -p and then run the database drop command to delete MySQL database using the terminal.