Yearly Archives

MySQL – Useful Resources

The following resources contain additional information on MySQL. Please use them to get more in-depth knowledge on this topic....

MySQL – Useful Resources

The following resources contain additional information on MySQL. Please use them to get more in-depth knowledge on this topic....

MySQL – Handling Duplicates

Generally, tables or result sets sometimes contain duplicate records. Most of the times it is allowed but sometimes it...

MySQL – Handling Duplicates

Generally, tables or result sets sometimes contain duplicate records. Most of the times it is allowed but sometimes it...

MySQL – and SQL Injection

If you take user input through a webpage and insert it into a MySQL database, there's a chance that...

MySQL – and SQL Injection

If you take user input through a webpage and insert it into a MySQL database, there's a chance that...

MySQL – Clone Tables

There may be a situation when you need an exact copy of a table and CREATE TABLE ... SELECT...

MySQL – Clone Tables

There may be a situation when you need an exact copy of a table and CREATE TABLE ... SELECT...

MySQL – Database Info

Obtaining and Using MySQL Metadata There are three types of information, which you would like to have from MySQL....

MySQL – Database Info

Obtaining and Using MySQL Metadata There are three types of information, which you would like to have from MySQL....

Using MySQL Sequences

A sequence is a set of integers 1, 2, 3, ... that are generated in order on a specific...

Using MySQL Sequences

A sequence is a set of integers 1, 2, 3, ... that are generated in order on a specific...

MySQL – ALTER Command

The MySQL ALTER command is very useful when you want to change a name of your table, any table...

MySQL – ALTER Command

The MySQL ALTER command is very useful when you want to change a name of your table, any table...

MySQL – INDEXES

A database index is a data structure that improves the speed of operations in a table. Indexes can be...

MySQL – INDEXES

A database index is a data structure that improves the speed of operations in a table. Indexes can be...

MySQL – Temporary Tables

The temporary tables could be very useful in some cases to keep temporary data. The most important thing that...

MySQL – Temporary Tables

The temporary tables could be very useful in some cases to keep temporary data. The most important thing that...

MySQL – Regexps

You have seen MySQL pattern matching with LIKE ...%. MySQL supports another type of pattern matching operation based on...

MySQL – Regexps

You have seen MySQL pattern matching with LIKE ...%. MySQL supports another type of pattern matching operation based on...