fork download
  1. -- your code goes here
  2.  
  3. CREATE TABLE Persons (
  4. int int,
  5. varchar varchar(255),
  6. long varchar(255),
  7. a* varchar(255)
  8. );
  9.  
  10. INSERT INTO Persons VALUES (22, "AA", "BB", "CC");
  11.  
  12. SELECT * FROM PERSONS;
Success #stdin #stdout #stderr 0s 17192KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: near line 3: near "*": syntax error
Error: near line 10: no such table: Persons
Error: near line 12: no such table: PERSONS