0

First time using SQLFiddle. I want to test Oracle sql. So on left panel, I paste this code which I got here

create table Employee(
  name varchar2(100),
  id integer, 
  salary integer,
  PRIMARY KEY(id)
);

This successfully executed. But when I change 1 of the column, I got script error:

create table Employee(
  sssssss varchar2(100),
  id integer, 
  salary integer,
  PRIMARY KEY(id)
);

Why? Can't I create any column name?

Community
  • 1
  • 1
Coisox
  • 1,002
  • 1
  • 10
  • 22
  • 1
    sql fiddle hasn't been working well with Oracle scripts for a while now. There is nothing wrong with your script. – sstan Aug 13 '16 at 04:11
  • Possible duplicate of [SQLFiddle not working (errors for Oracle, SQL Server, ...?)](http://stackoverflow.com/questions/35735405/sqlfiddle-not-working-errors-for-oracle-sql-server) – sstan Aug 13 '16 at 04:13
  • 1
    I see. thank you for saving my time – Coisox Aug 13 '16 at 19:41

0 Answers0