Are you familiar with the File Transfer Protocol, better known as FTP? If not, it’s worth exploring, as this protocol makes digital file transfers much easier. It’s especially useful when working with large volumes of data, where an FTP server is often the most efficient…
A MariaDB Galera cluster is a highly available and distributed database cluster that uses Galera technology for data replication. All nodes in the cluster are of equal value and can process read and write operations simultaneously. Thanks to multi-master replication and automatic…
With SHOW TABLES, MariaDB allows you to list all tables within a database, making it easier to access or delete tables. In this article, we’ll take a look at the structure of this MariaDB statement and how to use it. Using simple examples, we’ll also show you how to filter…
To permanently delete one or more tables in MariaDB, the `DROP TABLE` command can be used. Because the command irrevocably removes specified tables, it should only be accessible to authorized users. In this dedicated article, we will explain more about the command and its options…
When working with several tables, it’s often necessary to combine data records. In MariaDB, you can use the JOIN statement to do this. In this article, we explain how the command works and how the different variants INNER JOIN, LEFT OUTER JOIN and RIGHT OUTER JOIN differ from…
If a database is no longer required, it’s advisable to delete it from the server. In MariaDB, the command to do this is DROP DATABASE. Since this command permanently removes the database, it should only be used after thorough consideration, as it will also delete all tables and…
If you want to create a new database using the free and open-source relational database management system MariaDB, you can use the CREATE DATABASE command. This article provides a detailed explanation of how the command functions and explores various optional parameters that can…
If you want to create a new table, you can use CREATE TABLE in MariaDB to do so. The statement not only means that a new table is created, but also creates the individual columns and the data types permitted in them. In this article, we explain exactly how CREATE TABLE works in…
To create a new account, you can use the CREATE USER command in MariaDB. In this article, we’ll not only explain step by step how to use the command and create a new user, but also show you which user rights you can assign to users. We’ll also explore different clauses you can…
MariaDB offers two methods for selecting a database within its management system. In this dedicated article, we illustrate how to use the USE statement in the command line and the mysql_select_db function in PHP with a straightforward example, and also highlight what you need to…
Read more
We use cookies on our website to provide you with the best possible user experience. By continuing to use our website or services, you agree to their use.
More Information.