How to Use Temporary Tables in MariaDB
Let’s explore how temporary tables work in MariaDB. First, we have to connect to the server. For example (use your own connection details): mariadb -h 127.0.0.1 -u root -p”RootPassword!” –database demo Now, just to point something out, let’s create a standard (permanent) table. Here’s how: CREATE TABLE t ( c INT ); This table, t, … Read more