fork download
  1. CREATE TABLE IF NOT EXISTS stiri (
  2. titlu TEXT PRIMARY KEY,
  3. continut_stire TEXT NOT NULL UNIQUE,
  4. data_publicare INTEGER DEFAULT 1556388672
  5. );
Success #stdin #stdout 0.01s 5280KB
stdin
INSERT INTO stiri (titlu, continut_stire) VALUES ('Știrea 1', 'Aceasta este prima știre.');
SELECT * FROM stiri;
stdout
Știrea 1|Aceasta este prima știre.|1556388672