Skip to content
choisungwook edited this page May 7, 2022 · 1 revision

row 생성

INSERT 
    INTO projects 
    (name, created_at, updated_at)
    VALUES (
        'project1', 
        CURRENT_TIMESTAMP,
        CURRENT_TIMESTAMP
    );

postgresql

  • DDL
  • DML
  • schemas
Clone this wiki locally