MariaDB Release Notes

This section contains the release notes for MariaDB releases. This section is divided into the major MariaDB series. The current long-term support stable series is MariaDB 10.6, the current short-term support stable series is MariaDB 10.8, and the current development series are MariaDB 10.9 and MariaDB 10.10.

What is MariaDB? A comparison with MySQL

Performance The biggest feature and therefore the biggest advantage of MariaDB is its speed and performance. When it comes to performing queries or replication, MariaDB is faster than MySQL. So if you need a high-performance relational database solution, MariaDB is a good choice. In addition, MariaDB also easily supports a high concurrent number of connections … Read more

MySQL LIMIT & OFFSET with Examples

Using the OFF SET in the LIMIT query The OFF SET value is also most often used together with the LIMIT keyword. The OFF SET value allows us to specify which row to start from retrieving data Let’s suppose that we want to get a limited number of members starting from the middle of the rows, we … Read more