Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE users(
- id INT,
- username VARCHAR(255),
- password VARCHAR(255)
- );
- INSERT INTO users VALUES
- (1, "Jan", "kowalsky"),
- (2, "Pixel", "qwerty"),
- (3, "Teodor", "123456"),
- (4, "Hiper", "japko"),
- (5, "Oli", "haslo1"),
- (6, "Pierniczek", "password"),
- (7, "Demo", "pass");
Advertisement
Advertisement