Skip to content
C

Create the Products Table

Easysql

Write a CREATE TABLE statement for a table named products with exactly these columns, in this order: id (INTEGER, primary key), name (TEXT, cannot be NULL), price (INTEGER, cannot be NULL). No rows exist yet — the checker will insert a row and read it back to confirm your table's shape is correct.

Input (stdin)

Output

Run your code to see output here...