Skip to content

Instantly share code, notes, and snippets.

@ljnelson
Created February 19, 2020 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ljnelson/7ffc0b62ab0c6e1386ffc2674cd8b84c to your computer and use it in GitHub Desktop.
Save ljnelson/7ffc0b62ab0c6e1386ffc2674cd8b84c to your computer and use it in GitHub Desktop.
CREATE TABLE IF NOT EXISTS GREETING (
SALUTATION VARCHAR(64) NOT NULL PRIMARY KEY,
RESPONSE VARCHAR(64) NOT NULL
);
MERGE INTO GREETING (SALUTATION, RESPONSE) VALUES ('Marco', 'Polo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment