next

Table Column Types

What are the column types?

Column type modifiers

Column operations (from within queries)

Example table creation

Id Bird Name Birthday Male Parents
1 Peter 2004-11-05 T Mary, Bob
2 John 2004-12-21 T Mary
3 Mary 2003-05-02 F Ellen
4 Jane 2005-07-12 F Mary, John
5 Bob 2003-06-10 T Ellen
6 Ellen 2002-11-27 F NULL
create table birds
(
id smallint unsigned auto_increment not null primary key,
bird_name char(63) binary not null,
birthday date not null,
male bool not null,
parents varchar(255),
index (bird_name),
index (male)
);

Note: this table is not yet optimized

Watch out for

index :: introduction :: tables :: columns :: relational :: moeVSjoe :: file :: normal :: queries :: conclusion