Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying MariaDB Cookbook
  • Table Of Contents Toc
  • Feedback & Rating feedback
MariaDB Cookbook

MariaDB Cookbook

By : Daniel Bartholomew
4.2 (9)
close
close
MariaDB Cookbook

MariaDB Cookbook

4.2 (9)
By: Daniel Bartholomew

Overview of this book

Table of Contents (20 chapters)
close
close
MariaDB Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Using the XCOL table type


In a perfect world, all data in a MariaDB database would be properly defined and normalized. We don't live in such a world, and sometimes, we have to work with tables that contain one or more catchall columns stuffed full of related values. The XCOL table type enables us to work with this data as if it was stored in a separate rather than a single column.

How to do it...

  1. Launch the mysql command-line client application and connect to the test database on our MariaDB server. If the test database does not exist, create it first.

  2. Run the following CREATE TABLE statement to create our example table:

    CREATE TABLE superheroes ( 
      team varchar(50), 
      heroes varchar(1024)
    ); 
    
  3. Add some data to our new table:

    INSERT superheroes VALUES 
      ("The Avengers","Thor, Iron Man, Black Widow, Hawkeye, Hulk, Captain America"), 
      ("The Justice League", "Superman, Batman, Aquaman, Flash, Wonder Woman"), 
      ("The X-Men", "Storm, Cyclops, Wolverine, Rogue, Iceman");
    
  4. Create an XCOL table...

Unlock full access

Continue reading for free

A Packt free trial gives you instant online access to our library of over 7000 practical eBooks and videos, constantly updated with the latest in tech
bookmark search playlist font-size

Change the font size

margin-width

Change margin width

day-mode

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Delete Bookmark

Modal Close icon
Are you sure you want to delete it?
Cancel
Yes, Delete

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY