fork(1) download
  1. CREATE TABLE postari (
  2. prenume_autor TEXT,
  3. nume_autor TEXT,
  4. text_postare TEXT,
  5. data DATETIME
  6. );
  7.  
  8. INSERT INTO postari (nume_autor, prenume_autor, text_postare)
  9. VALUES ('Trimbitas', 'Petru', 'Aceasta e prima postare!');
  10.  
  11. SELECT FROM * postari;
Success #stdin #stdout #stderr 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: near line 11: near "FROM": syntax error