Search icon
Subscription
0
Cart icon
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
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

Table of Contents (15) Chapters

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 columns


A table row can be seen as a collection of named properties are called columns or fields. So, columns must suit the units of data that make up the information.

In the previous sections, we learned the most important SQL statements for managing databases and tables. We have also seen some example column definitions. In this section, we will discuss the following:

  • Column definitions

  • The management of columns

A column definition has the following syntax:

<column_name> <data_type> [type_attributes] [NULL | NOT NULL]
[DEFAULT <value>] [AUTO_INCREMENT] [COMMENT 'string']

The following subsections will explain the data types, the NULL attribute, and the default values. The AUTO_INCREMENT attribute and comments will be discussed later in the indexing section of this chapter.

Data types

The data type is the most important characteristic that we need to set: it determines the class of data that the column will contain, its size, the way it will be stored, and the operations...

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 $15.99/month. Cancel anytime}