MySQL

How To Install MySQL on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Install MySQL on Ubuntu 18.04

MySQL is an open-source database management system, commonly installed as part of the popular LAMP (Linux, Apache, MySQL, PHP/Python/Perl) stack. It uses a relational database and SQL (Structured Query Language) to manage its data. This tutorial will explain how to install MySQL version 5.7 on an Ubuntu 18.04 server.

Read more
How To Install phpMyAdmin on a LEMP server — step-by-step Web Servers tutorial on Progressive Robot

How To Install phpMyAdmin on a LEMP server

This tutorial covers the installation of phpMyAdmin on a LEMP server (as opposed to a LAMP server). phpMyAdmin is a free software to work with MySQL on the web—it provides a convenient visual front end to the capabilities of MySQL.

Read more
How To Prepare For Your MySQL 5.7 Upgrade — step-by-step Linux tutorial on Progressive Robot

How To Prepare For Your MySQL 5.7 Upgrade

This tutorial will help you prepare to upgrade to MySQL 5.7 from earlier versions. It covers `sql_mode` with practical examples of query responses that get stricter. The tutorial also contains instructions for checking for warnings and errors, and contains a sample config file so you can test the new settings before upgrading. This article is from the [MySQL Team at Oracle](http://www.oracle.com/us/products/mysql/mysqlcommunityserver/overview/index.html).

Read more
How To Use Stored Procedures in MySQL — step-by-step Databases tutorial on Progressive Robot

How To Use Stored Procedures in MySQL

MySQL supports the use of stored procedures, which group one or multiple SQL statements for reuse under a common name. Using stored procedures, you can create reusable routines for common tasks to be used across multiple applications, provide data validation, or deliver an additional layer of data access security. In this tutorial, you’ll learn what stored procedures are and how to create basic stored procedures that return data and use both input and output parameters.

Read more
CHAT