Find by Category

How to install MySQL on Ubuntu 18.04/19.04

I are going to install MySQL server on Ubuntu 19.04 using terminal, but you can follow the instructions and install MySQL server on Ubuntu 18.04 as well. First thing first, we need to update the system core, so launch your terminal manually or press control+shift+t and type following command.. Wait for the updates and upgradables … Read more

MySQL Tutorial: Create Database, Table, & Insert Values

Hello World!! In this tiny MySQL Tutorial video, I demonstrate how to create a database, select database, create a table, and insert values into the table, using the terminal, command line, prompt. How to hash the password in MySQL Database. How to create a database in MySQL CREATE DATABASE database_name; How to list databases in … Read more

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.