Skip to content

Table ACTOR

This table lists information for all actors. The table is joined to the FILM table by means of the FILM_ACTOR table.

Columns

This table contains 4 columns.

ACTOR_ID

INTEGER · NOT NULL

A surrogate primary key used to uniquely identify each actor in the table.

FIRST_NAME

VARCHAR(45) · NOT NULL

The actor first name.

LAST_NAME

VARCHAR(45) · NOT NULL

The actor last name.

LAST_UPDATE

TIMESTAMP · NOT NULL · DEFAULT CURRENT_TIMESTAMP

When the row was created or most recently updated.

Primary key

This table has a primary key.

ACTOR

ACTOR_ID

Indices

This table has 2 indices.

ACTOR_IDX_LAST_NAME

LAST_NAME

RDB$PRIMARY1

ACTOR_ID