Skip to content

Instantly share code, notes, and snippets.

@VeryFatBoy
Forked from robrich/hello-memsql.sql
Created October 12, 2021 16:36
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 VeryFatBoy/5ebe8213df258f049d57df2f29f9bbd5 to your computer and use it in GitHub Desktop.
Save VeryFatBoy/5ebe8213df258f049d57df2f29f9bbd5 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