MySQL
How to delete data in MySQL table
Submitted by Richard on Tue, 07/20/2010 - 23:30If you want to delete a record from any MySQL table then you can use the delete command. The delete command is very similar to the update command.
The delete statement deletes rows from a table.
The table is the table name.
The where clause specifies the conditions that identify which rows to delete. full story »
How to update data in MySQL table
Submitted by Richard on Tue, 07/20/2010 - 17:28Here's how to update existing data into MySQL database table.
The update statement updates columns of existing rows in the table with new values.
The table is the table name.
The set clause indicates which column to modify and the values they should be given. full story »
How to insert data into MySQL table
Submitted by Richard on Tue, 07/20/2010 - 00:33Here is a general form of insert command:
The insert statement inserts new row into an existing table. The table is the name of the table into which we want to insert data, column1 and column2 are column names and value1, value2 are values for the respective columns.
Example: full story »
How to show MySQL table details?
Submitted by Richard on Wed, 10/14/2009 - 06:17Issue this command in your MySQL prompt to show table column detail.
or
The display would be as follows: full story »
How display database tables in MySQL?
Submitted by Richard on Wed, 10/14/2009 - 06:13Switch to a database you want to use using this command:
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
Once you have selected the database, just type this command to show all the tables inside it.
The database tables are shown below. full story »
How to delete MySQL database?
Submitted by Richard on Wed, 10/14/2009 - 06:09To delete MySQL database, just simply type this command inside MySQL terminal.
Query OK, 0 rows affected (0.07 sec)
How to create MySQL database using mysqladmin command?
Submitted by Richard on Wed, 10/14/2009 - 06:04To create MySQL database using mysqladmin command, type this command in your terminal.
How to create MySQL database?
Submitted by Richard on Wed, 10/14/2009 - 06:01Login to your MySQL database server
and type this command:
Query OK, 1 row affected (0.00 sec)
To check your newly created database, type this command:
- +--------------------+
- | Database |
- +--------------------+
- | information_schema |
- | mysql |
- | test |
- | test_db |
- +--------------------+
- 4 rows in set (0.00 sec)



Recent comments
20 hours 32 min ago
1 week 3 days ago
2 weeks 6 days ago
5 weeks 6 days ago
6 weeks 8 hours ago
6 weeks 9 hours ago
6 weeks 21 hours ago
6 weeks 21 hours ago
6 weeks 3 days ago
9 weeks 5 days ago