Unable to create table in SQL Fiddle

685 views Asked by At

I'm trying to test out some ideas in SQL Fiddle, but I am having a hard time even getting it to work.

When I copy and paste other peoples queries it seems to work fine, but when I do something as simple as changing the table name, it suddenly stalls and fails.

Here is some test code I am trying to run in the Schema area. Please let me know what I am doing wrong.

CREATE TABLE Products (
    PROD_ID INT NOT NULL AUTO_INCREMENT,
    PROD_NAME VARCHAR(25) NOT NULL,
    PROD_COST VARCHAR(25) NOT NULL,
    PRIMARY KEY(PROD_ID)
);
0

There are 0 answers