Create table: null and not null
Drop table Product; CREATE TABLE Product ( ID SMALLINT UNSIGNED NOT NULL, Name VARCHAR(40) NOT NULL ); Describe Product;