DBMS Queries : //for fedora-19 or 20 make sure u have to log in as a root //if no then type su in terminal then enter password //installed mysql and then....direct use following commands //NOTE " <- " this sign is use for enter.... To open MYSQL : systemctl start mysqld <- mysql <- To create database: show databases <- +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | test | +--------------------+ 4 rows in set (0.01 sec) create database vishakha; <- show databases <- +--------------------+ | Database | +--------------------+ | information_schema | | mysql ...