MySQL queries
MySQL queries
com Mob:8888809416
MySQL Queries
mysql> DROP DATABASE southwind;
-- Show all the tables to confirm that the "products" table has been
created
mysql> SHOW TABLES;
Inserting Rows
-- Insert a row with all the column values
mysql> INSERT INTO products VALUES (1001, 'PEN', 'Pen Red', 5000,
1.23);
--show table
mysql> SELECT * FROM products;