Skip to content

Instantly share code, notes, and snippets.

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 takahashi-h5/542be9527ef489952cca7c07b6cee70e to your computer and use it in GitHub Desktop.
Save takahashi-h5/542be9527ef489952cca7c07b6cee70e to your computer and use it in GitHub Desktop.
create table "public".empuser (
id integer not null
, firstname character varying(60) not null
, lastname character varying(60) not null
, age integer not null
, primary key (id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment