How To Insert Single Row In MySQL Table Tutorial Example
Open your MySQL Query Editor then copy & paste the below code to Insert into a database table "test" in MySQL Database Server
-- How To Insert Single Row In MySQL Table Tutorial Example INSERT INTO test(TestID ,TestName,TestAge) VALUES (1 , 'Donald', 33); -- that's it!! a row has been inserted in mysql database table "test" with 3 columns value
-- is comment in MySQL
-- in fact it is comment in MSSQL and Oracle as well
How To Insert Single Row In MySQL Table Tutorial Example - Result in MySQL Query Editor
Related Tutorial Examples
- MySQL concat function columns string SQL Example
- MySQL concat function columns Aliase SQL Example
- MySQL concat function columns SQL Example
- MySQL concat function character string Aliase SQL Example
- MySQL concat function string Aliase SQL Example
- Creating Database(s) using SQL Command MySQL Example
- MySQL Stored Procedure Function: How to Drop a Function Example
- 20 steps to make CakePHP Blog Project

No comments:
Post a Comment
leave your comments here..