Created
September 18, 2018 10:45
-
-
Save jO-Osko/1fe44fbedfffc26395eb67754acd333c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table UDELEZENCI | |
( | |
IME TEXT, | |
PRIIMEK TEXT, | |
EMAIL TEXT | |
unique, | |
STAROST INTEGER, | |
VEGETARJANEC TEXT default 'DA' | |
); | |
INSERT INTO UDELEZENCI (IME, PRIIMEK, EMAIL, STAROST, VEGETARJANEC) VALUES ('Filip', 'Koprivec', '[email protected]', 12, 'NE'); | |
INSERT INTO UDELEZENCI (IME, PRIIMEK, EMAIL, STAROST, VEGETARJANEC) VALUES ('masd', 'asda', null, 34, 'DA'); | |
INSERT INTO UDELEZENCI (IME, PRIIMEK, EMAIL, STAROST, VEGETARJANEC) VALUES ('filip2', 'adsdad', '[email protected]', 23, 'DA'); | |
INSERT INTO UDELEZENCI (IME, PRIIMEK, EMAIL, STAROST, VEGETARJANEC) VALUES ('jan', 'kovac', '[email protected]', 20, 'NE'); | |
INSERT INTO UDELEZENCI (IME, PRIIMEK, EMAIL, STAROST, VEGETARJANEC) VALUES ('luk', 'novak', '[email protected]', 35, 'DA'); | |
INSERT INTO UDELEZENCI (IME, PRIIMEK, EMAIL, STAROST, VEGETARJANEC) VALUES ('asda', 'asda', '[email protected]', 45, 'NE'); | |
INSERT INTO UDELEZENCI (IME, PRIIMEK, EMAIL, STAROST, VEGETARJANEC) VALUES ('Miro', 'dfsd', '[email protected]', 31, 'DA'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment