mysqlide
(8)
dbForge Studio for MySQL: Why I Switched to This Easy, All-Rounder GUI Tool
Learning MySQL introduced me to the command line interface and MySQL Workbench. While I find these tools enough for most tasks, I feel that my productivity is not good enough. So, I looked for another...
29 August 2022
·
4
· 195
·
Edwin Sanchez
MySQL Select Database
Chances are that you have multiple databases on the MySQL Server instance you're connected to; and when you need to manage several databases at once, you need to make sure you have selected the correc...
17 June
·
0
· 2
·
John Fuller
How to list the users in a MySQL/MariaDB database and Manage Permissions
User management involves granting database access, setting user permissions, and monitoring activities. This process, traditionally handled via command-line utilities, includes creating, modifying, an...
30 May
·
0
· 2
·
John Fuller
How to Kill Running Process, Query, or Session in MySQL
Every database developer and administrator strives to maintain optimal performance and stability for their databases. There are tasks that need to be done every single day to keep things the way they...
22 May
·
0
· 1
·
John Fuller
Best Navicat alternative for MySQL and MariaDB databases
Navicat is a popular brand of GUI tools that help handle a number of tasks related to database development and management. Moreover, these tools work across a wide variety of the world's biggest relat...
21 May 2024
·
0
· 1
·
John Fuller
Tune Performance using MySQL Query EXPLAIN Plan
MySQL EXPLAIN plan helps you understand how MySQL queries are executed and what indexing techniques are better for running queries efficiently. The EXPLAIN plan is a handy statement, especially when y...
14 May 2024
·
0
· 1
·
John Fuller
How to Add, Show, and Drop MySQL Foreign Keys
What is a foreign key in MySQL?
We’ll start with the definition. A foreign key is a column or a group of columns that allow cross-referencing related data across tables in a database. A foreign...
12 May 2024
·
0
· 1
·
John Fuller
How to Show Indexes in MySQL Tables & Database
Managing data from small or large databases is a daily task of database administrators and developers. Frequently, they need to search for specific data processing thousands of rows. This can be compl...
09 April 2024
·
0
· 1
·
John Fuller