Author Archives

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

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

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

MySQL – LIKE Clause

We have seen the SQL SELECT command to fetch data from the MySQL table. We can also use a...

MySQL – LIKE Clause

We have seen the SQL SELECT command to fetch data from the MySQL table. We can also use a...

MySQL – DELETE Query

If you want to delete a record from any MySQL table, then you can use the SQL command DELETE...

MySQL – DELETE Query

If you want to delete a record from any MySQL table, then you can use the SQL command DELETE...

MySQL – UPDATE Query

There may be a requirement where the existing data in a MySQL table needs to be modified. You can...

MySQL – UPDATE Query

There may be a requirement where the existing data in a MySQL table needs to be modified. You can...

MySQL – WHERE Clause

We have seen the SQL SELECT command to fetch data from a MySQL table. We can use a conditional...

MySQL – WHERE Clause

We have seen the SQL SELECT command to fetch data from a MySQL table. We can use a conditional...