Skip to content

Instantly share code, notes, and snippets.

@robrich
Last active October 12, 2021 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save robrich/303bc3998acca84573bd63d06f041a73 to your computer and use it in GitHub Desktop.
Save robrich/303bc3998acca84573bd63d06f041a73 to your computer and use it in GitHub Desktop.
CREATE DATABASE hellomemsql;
USE hellomemsql;
CREATE TABLE test (
message text NOT NULL
);
INSERT INTO test (message) VALUES ('this is a sample message');
SELECT * FROM test;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment