Note: This is a video/demo page for the Advanced Database Relational List product. Click here if you want to return to the product's page.

In demo is used a database of cars with three tables: The cars trademark, the cars models and the table of disposable colors for every car's models. The database structure is as follow:

Table name:
car
Columns:
car_id (the row id)
name (the car's name)
Table name:
model
Columns:
model_id (the row id)
mode_name (the model's name of car)
car_id (the id of car that this model belong)
Table name:
color
Columns:
color_id (the row id)
color_name (the color's name)
model_id (the id of car's model that this color belong)