MySQL Queries

A list of commonly used MySQL queries to create database, use database, create table, insert record, update record, delete record, select record, truncate table and drop table are given below.

1) MySQL Create Database

MySQL create database is used to create database. For example

snippet
create database db1;

More Details...

2) MySQL Select/Use Database

MySQL use database is used to select database. For example

snippet
use db1;

More Details...

3) MySQL Create Query

MySQL create query is used to create a table, view, procedure and function. For example:

snippet
CREATE TABLE customers  
(id int(10),  
 name varchar(50),  
 city varchar(50),
 PRIMARY KEY (id )  
);

More Details...

4) MySQL Alter Query

MySQL alter query is used to add, modify, delete or drop colums of a table. Let's see a query to add column in customers table:

snippet
ALTER TABLE customers 
ADD age varchar(50);

More Details...

5) MySQL Insert Query

MySQL insert query is used to insert records into table. For example:

snippet
insert into customers values(101,'rahul','delhi');

More Details...

6) MySQL Update Query

MySQL update query is used to update records of a table. For example:

snippet
update customers set name='bob', city='london' where id=101;

More Details...

7) MySQL Delete Query

MySQL update query is used to delete records of a table from database. For example:

snippet
delete from customers where id=101;

More Details...

8) MySQL Select Query

Oracle select query is used to fetch records from database. For example:

snippet
SELECT * from customers;

More Details...

9) MySQL Truncate Table Query

MySQL update query is used to truncate or remove records of a table. It doesn't remove structure. For example:

snippet
truncate table customers;

More Details...

10) MySQL Drop Query

MySQL drop query is used to drop a table, view or database. It removes structure and data of a table if you drop table. For example:

snippet
drop table customers;

More Details...

Related Tutorial
Follow Us
https://www.facebook.com/Rookie-Nerd-638990322793530 https://twitter.com/RookieNerdTutor https://plus.google.com/b/117136517396468545840 #
Contents +