English Grammar and
Examples
Idioms
Jargon
Body language
MYSQL
Example of Binlog MYSQL Statement
Example of Create Server MYSQL Statement
Example of Cursor Close MYSQL Statement
Example of Cursor Fetch MYSQL Statement
Example of Cursor Open MYSQL Statement
Example of Declare Cursor For MYSQL Statement
Example of Load XML MYSQL Statement
Example of Show Create Trigger MYSQL Statement
Example of Show Relaylog Events MYSQL Statement
Example of Truncate Table MYSQL Statement
Example of Handler MYSQL Statement
Example of Loop MYSQL Statement
Example of Resignal MYSQL Statement
Example of Return MYSQL Statement
Example of Signal MYSQL Statement
Show Function Status
Show Index
Show Master Status
Show Privileges
Show Procedure Code
Show Procedure Status
Show Privileges
Show Profile
Show Profiles
Show Slave Status
Show Status
Show Triggers
Show Variables
Show Function Code
Call
Drop Function
Insert
Install Plugin
Load data infile
Replace

Full list of MYSQL
   Business Letters   Personal Letters   Resumes   CVs and more
       Facebook Example of Insert Mysql Statement LINKED IN Example of Insert Mysql Statement del-icio-us Example of Insert Mysql Statement

Example of Insert Mysql Statement:

INSERT INTO employees(name,salary) VALUES('anthony','2000')

INSERT INTO employees(name,salary) VALUES('anthony',NULL)

INSERT INTO temp_table(name,salary) SELECT name,salary FROM employees WHERE salary > 2000

Example of Mysql Insert


INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]
[INTO]
tbl_name [(col_name,...)]
{VALUES | VALUE} ({expr | DEFAULT},...),(...),...
[ ON DUPLICATE KEY UPDATE
col_name=expr
[, col_name=expr] ... ]

INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]
[INTO]
tbl_name
SET col_name={expr | DEFAULT}, ...
[ ON DUPLICATE KEY UPDATE
col_name=expr
[, col_name=expr] ... ]

INSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]
[INTO]
tbl_name [(col_name,...)]
SELECT ...
[ ON DUPLICATE KEY UPDATE
col_name=expr
[, col_name=expr] ... ]

         


Link to this page:
* Required Fields
 Add Comment:
Name* :
Email :
Comment* :
 
Contact Us About Us Privacy Policy Disclaimer
Copyright © 2008 - 2011 ExamplesOf .com