Databases

What is a Database? — step-by-step DevOps tutorial on Progressive Robot

What is a Database?

A database is a collection of structured information organized in a way that it can be easily accessed, managed, and updated by computer programs.

Read more
How To Address Crashes in MySQL — step-by-step Linux tutorial on Progressive Robot

How To Address Crashes in MySQL

The most common cause of crashes in MySQL is that it stopped or failed to start due to insufficient memory. To check this, you will need to review the MySQL error log after a crash. First, attempt to start the MySQL server by typing: sudo systemctl start mysql Then…

Read more
How To Get Total Result Count in Laravel Eloquent — step-by-step Programming tutorial on Progressive Robot

How To Get Total Result Count in Laravel Eloquent

When working with database query results, it is often useful to obtain only the total number of rows in a result set, instead of pulling the full dataset content with a regular query. Eloquent offers a few different aggregate methods that return a scalar value instead of an Eloquent object, such as count(), max(), and sum(). In this part of the series, you’ll update the main application view to show the total number of links in each list, using the count() method.

Read more
CHAT