Question: Provide the SQL statement that creates a table named products with the * following attributes: * * - sku : fixed length character string of
Provide the SQL statement that creates a table named "products" with the * following attributes: * * - "sku" : fixed length character string of length 10 * - "name" : variable length character string of length 40 * - "category" : variable length character string of length 30 * - "price" : fixed point number with 10 digits, 2 decimals * - "description" : variable length character string of maximum length * - "ship_weight" : fixed point number with 6 digits, 1 decimal (stored in ounces) * - "date_listed" : timestamp without time zone * - "last_update" : timestamp without time zone * * Do not implement integrity constraints.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
