Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 169 Bytes

File metadata and controls

15 lines (13 loc) · 169 Bytes

SQL_Project

start

psql postgres

create a table

CREATE TABLE employees (
    id SERIAL PRIMARY KEY,
    name VARCHAR(255),
    salary NUMERIC
);