Data types specify what type of data can be stored in that particular column. If a column called `Q_CHARACTER` is to be used to hold names, then that particular column should have a `varchar` (variable-length character) data type. A column that will hold year of the movie will be type `number`, in our example column `Q_YEAR`.
Final SQL command that will create our table with desired table structure is as follows: