SQL:- Structured Query Language Install Xampp. Install My SQL Workbench. Create Database using below mentioned query:- create database Dpk Datatypes in MySQL:- String Numeric Date and time Create Database:- create database dpk; execute above query in mysql workbence then create a table using below query:- create table Product( pid int, pname varchar(50), pcompany varchar(50), price int ); show table by using below query:- SELECT * FROM dpk.product; how to insert Data in table:- insert into personal (id, name, birth_date, phone, gender) values(1, "Deepak Tewatia", "1997-08-02", "8398979594", "M") list of constraints in MySQL not null unique default check foreign key primary key to set conditions create table test_2( id int not null unique, name varchar(50) not null, age int not null check(age>=18), phone varchar(12) not null uniq...