Blog

Welcome to our Blog, here you can find news and articles related to the IT industry. If you are interested in finding out more about our company, you can take a look at our portfolio or read about us.

What is faster in MySQL <> 0 (not equal) or > 0 (greater than)

January 30, 2024

In general, if you are looking for a straightforward answer without considering the context, > 0 is likely to be marginally faster than <> 0. The reason is that > is a simpler operation compared to <> (not equal), and in many database systems, simple comparison operations are optimized more efficiently.

Add a comment (0) 1,605 Views Read more

Selecting the Right Database for Your Mobile Application

October 01, 2023

Choosing the right database for your mobile application is a critical decision that can significantly impact the performance, scalability, and user experience of your app. With a plethora of database options available, it's essential to consider various factors before making your choice. In this article, we'll explore the key considerations and provide guidance on selecting the most suitable database for your mobile application.

Add a comment (0) 7,314 Views Read more

MySQL tables size optimization

August 09, 2019

Here we will provide some insights on How to setup MySQL table field, and what to store to optimize size of MySQL database.

Add a comment (0) 22,080 Views Read more

Export MySQL table into CSV using PHP

July 28, 2015

Here is code to download MySQL table into CSV and force browser to download csv file.

Add a comment (0) 258,365 Views Read more

What is faster, JOIN or SELECT from multiple tables?

May 01, 2014

Compare speed of 2 SQL queries: SELECT fname FROM blog JOIN users USING (usersID) and SELECT fname FROM blog, users WHERE blog.usersID=users.usersID. See result below.

Add a comment (0) 8,406 Views Read more