fork download
  1. CREATE TABLE test_table (
  2.  
  3. name varchar(20),
  4. age int not null,
  5. location varchar(20)
  6.  
  7. )
  8.  
  9. INSERT INTO test_table (name, age, location)
  10. VALUES ('John', 26, 'Florida')
  11.  
  12. SELECT *
  13. FROM test_table;
Success #stdin #stdout #stderr 0s 18088KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: near line 1: near "INSERT": syntax error