fork download
  1. CREATE TABLE code
  2. (
  3. code_id varchar(255)
  4. );
  5.  
  6. INSERT INTO code (code_id)
  7. VALUES ('test');
  8.  
  9.  
  10. SELECT t.id,
  11. code.code_id
  12. from (
  13. values ('error'), ('test')
  14. ) as t (id)
  15. left join code on code.code_id = t.id;
Runtime error #stdin #stdout #stderr 0s 3352KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: near line 10: near "(": syntax error