In this section, you will learn how to insert Data into table, how to select data from table and use select function in Mysql.
For Adding data to tables -
INSERT INTO table_name (column1, column2, column3, ...)
VALUES (value1, value2, value3, ...);
To view table content -
SELECT * from table_name;
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment