Monthly Archives

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...

MySQL – Transactions

A transaction is a sequential group of database manipulation operations, which is performed as if it were one single...

MySQL – Transactions

A transaction is a sequential group of database manipulation operations, which is performed as if it were one single...

MySQL – Sorting Results

We have seen the SQL SELECT command to fetch data from a MySQL table. When you select rows, the...

MySQL – Sorting Results

We have seen the SQL SELECT command to fetch data from a MySQL table. When you select rows, the...

Using MySQl Joins

In the previous chapters, we were getting data from one table at a time. This is good enough for...

Using MySQl Joins

In the previous chapters, we were getting data from one table at a time. This is good enough for...

Handling MySQL NULL Values

We have seen the SQL SELECT command along with the WHERE clause to fetch data from a MySQL table,...

Handling MySQL NULL Values

We have seen the SQL SELECT command along with the WHERE clause to fetch data from a MySQL table,...