| 14 | | INSERT INTO personal (id, first_name, last_name, ssn, email, password) |
| 15 | | VALUES ('0010001', 'Anna', 'Ivanova', '1234567890123', 'anna@store.com |
| 16 | | ', 'hashed_pw'); |
| | 14 | INSERT INTO personal (id, first_name, last_name, ssn, email, password) VALUES |
| | 15 | ('0010001', 'Anna', 'Ivanova', '1234567890123', 'anna@store.com', 'hashed_pw'); |
| 40 | | INSERT INTO store (store_ID, name, date_of_founding, physical_address, store_email) |
| 41 | | VALUES ('001', 'HandCraft001', '2024-01-01', |
| 42 | | 'st.Main num.5, Skopje 1000, MK', |
| 43 | | 'store001@shop.com |
| 44 | | '); |
| | 39 | INSERT INTO store (store_ID, name, date_of_founding, physical_address, store_email) VALUES |
| | 40 | ('001', 'HandCraft001', '2024-01-01', 'st.Main num.5, Skopje 1000, MK', 'store001@shop.com'); |