Instruction
Good. Just as you could expect, it's not possible to enter a longer value into a char(x) column.
We're now going to introduce another text data type. Depending on the database, it's called TEXT or CLOB. In our database, both names refer to the same data type.
This data type is used to store text information of any length. You can store one word and a thousand words in such a column.
Exercise
Peter decided that the old table user_account was not enough and that the 10-character-long nicknames didn't really work. What's more, he wants users to describe themselves! Let's create a new table user_account with the following columns:
first_nameof typevarchar(32),nicknameof typevarchar(32),descriptionof typeclob.
Stuck? Here's a hint!
Type
CREATE TABLE user_account (
first_name varchar(32),
nickname varchar(32),
description clob
);


