Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
MariaDb Essentials

You're reading from  MariaDb Essentials

Product type Book
Published in Oct 2015
Publisher
ISBN-13 9781783982868
Pages 206 pages
Edition 1st Edition
Languages
Toc

Table of Contents (15) Chapters close

MariaDB Essentials
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
1. Installing MariaDB 2. Databases and Tables 3. Getting Started with SQL 4. Importing and Exporting Data 5. Views and Virtual Columns 6. Dynamic Columns 7. Full-Text Searches 8. Using the CONNECT Storage Engine Index

Working with databases


An RDBMS allows you to store data in a structured way, with relations between the different data collections. These collections of data are stored in tables. However, each table is located in a database. We can see this structure as a container for tables and other objects. In MariaDB, schema is a synonym for database and is used in the documentation as well as in the statement syntax.

To list the existing databases, we can use the SHOW DATABASES statement. Let's try it on our newly installed MariaDB:

MariaDB [(none)]> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
+--------------------+
3 rows in set (0.09 sec)

As we can see in this code snippet, there are several built-in databases. They are as follows:

  • information_schema: A virtual database containing various meta-information about our data structures and server usage. It can be read, but not directly modified...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}