Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Your first table
Text data types
Summary

Instruction

Excellent! Now the users can provide some information about themselves.

You deserve a short break. Here's something a little different.

Exercise

Try playing around with the table user_account. Add new rows and see how they work with various data types.

Here is a reminder of the table definition:

CREATE TABLE user_account (
  first_name varchar(32),
  nickname varchar(32),
  description text
);