Skip to content

Commit

Permalink
add more statements
Browse files Browse the repository at this point in the history
  • Loading branch information
donsez committed Dec 5, 2024
1 parent 5e6e59d commit 9dced23
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions postgres/work/employee/employee.sql
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,16 @@ CSV HEADER;

-- Show all
SELECT * FROM EMPLOYEE;

-- Insert a new employee
INSERT INTO EMPLOYEE(ID,NAME,SALARY) VALUES(1011,'Stonebraker',100000.00);

-- Show all
SELECT * FROM EMPLOYEE;

-- Insert a new employee
INSERT INTO EMPLOYEE(ID,NAME,SALARY) VALUES(1012,'Stonebraker',100000.00);

-- Show all
SELECT * FROM EMPLOYEE;

0 comments on commit 9dced23

Please sign in to comment.