Database : A database is an organized collection of data.
Installing MySQL-server in Ubuntu
sudo apt-get install mysql-server// Installing the mysqlsudo mysql_secure_installation// securing the mysql server

Creating a database in MySQL
sudo mysql -u root -p- enter the password // Connecting to MySQL
create database Akhil0087// Creating a database in mysqluse Akhil0087// Entering into the databasecreate table Topics(Topic VARCHAR(255) NOT NULL,created_on DATE,Author VARCHAR(255) NOT NULL) ENGINE=INNODB;// Creating a table in the databasedescribe Topics;// To get the following output.

insert into Topics (Topic, created_on, Author) values ('AWS', '2019-11-21', 'Akhil');// Providing the values for each described field.

One thought on “MYSQL DATABASE”