Skip to content

Commit

Permalink
fix comma
Browse files Browse the repository at this point in the history
  • Loading branch information
donsez committed Nov 8, 2024
1 parent a0dd785 commit 85968b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions postgres/work/employee/employee.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;

DROP TABLE IF EXISTS LesEmployes CASCADE;
DROP TABLE IF EXISTS EMPLOYEE CASCADE;

-- Create the table LesEmployes and import a CSV file into the table
CREATE TABLE EMPLOYEE
(
ID serial,
NAME varchar(100) NOT NULL,
SALARY numeric(15, 2) NOT NULL,
CREATED_DATE timestamp with time zone NOT NULL DEFAULT CURRENT_TIMESTAMP
PRIMARY KEY (ID)
CREATED_DATE timestamp with time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY(ID)
);

COPY EMPLOYEE(ID,NAME,SALARY)
Expand Down

0 comments on commit 85968b3

Please sign in to comment.