============Mysql Basic Commands================= 1)create database sample; ----> creating new database 2)use sample 3)show tables; -----> show the all tables 4)create table student(id integer primary key auto_increment,name char(20),phone_no int(10),address varchar(100),dob date); 5)desc student --> see the all column in table 6)insert into student (name,phone_no,address) values ("koti",66666666666,"bng"), ("swathi",777777777,"karntaka"), ("anushuka",000000,"banagalore"); --->inserting data to table 7)select * from student; ---> see all the records in single table 8)select * from student where name = "koti"; -- > where condition 9)alter table student rename course --- > Rename the table 10)alter table student add column dob date; --- > Add column in Mysql 11)alter table course change dob dateofbirth date; ---> Rename the column 12)alter table course modify city char(20); ---> C...