The advantages and disadvantages of MySQL

and disadvantages of MySQL in this post. [MySQL is widely used] Although the accurate ... that fits all, MySQL also has some disadvantages. [Stored procedure and trigger is limited] Compare ... MySQL is an Open Source, high performance, feature-rich relational database management ... software, it's been used in various environments. MySQL used to be the first choice for open source

MySQL export table definition and create index tips

Sometimes we need to quickly rebuild existed table structure. Mysql provided mysqldump options to facilitate this.

Or you can export single table in a database.

MySQL add index example

I find my program gets slower and slower when the data grows. The program is a web page crawler, when it downloaded a page and save it to MySQL database, it saved the url of the page at the same time.

When the crawler visit the target site again, it may catches the already grabbed url. The program has to search in the database to determine whether the url is already existed. A simple SQL query can do the trick.

When the crawler visit the target site again, it may catches the already grabbed url. The program has to .

What is the MyISAM table type in MySQL?

The MyISAM table type is an important type in MySQL, and its the default type if you not specify the type option.

MyISAM is based on old ISAM table type, it will replace the ISAM in the future.

Previous Page 1 2