Advertisement
drakon-firestone

lekcja12 baza danych

Jul 31st, 2023 (edited)
1,487
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CREATE TABLE users(
  2.     id INT,
  3.     username VARCHAR(255),
  4.     password VARCHAR(255)
  5. );
  6.  
  7. INSERT INTO users VALUES
  8. (1, "Jan", "kowalsky"),
  9. (2, "Pixel", "qwerty"),
  10. (3, "Teodor", "123456"),
  11. (4, "Hiper", "japko"),
  12. (5, "Oli", "haslo1"),
  13. (6, "Pierniczek", "password"),
  14. (7, "Demo", "pass");
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement