fork download
  1. create table slownik(
  2. eng varchar(50),
  3. pl varchar(50)
  4. );
  5.  
  6. insert into slownik values
  7. ('be', 'być'),
  8. ('make', 'robić'),
  9. ('car', 'auto'),
  10. ('mouse', 'myszka'),
  11. ('elephant', 'słoń'),
  12. ('narrow-gauge train', 'kolej wąskotorowa'),
  13. ('spoi', 'urobek');
  14.  
  15. select * from slownik where pl = 'auto';
  16. select * from slownik where pl <> 'auto' order by random() limit 3;
Success #stdin #stdout 0s 3404KB
stdin
Standard input is empty
stdout
car|auto
make|robić
narrow-gauge train|kolej wąskotorowa
be|być