Skip to content

Instantly share code, notes, and snippets.

@AlexRogalskiy
Forked from robrich/init.sql
Created August 10, 2021 07:04
Show Gist options
  • Save AlexRogalskiy/088adcd354282d4482c04dd95bc19d19 to your computer and use it in GitHub Desktop.
Save AlexRogalskiy/088adcd354282d4482c04dd95bc19d19 to your computer and use it in GitHub Desktop.
Get started with MemSQL on Windows
CREATE DATABASE IF NOT EXISTS hellomemsql;
USE hellomemsql;
CREATE TABLE IF NOT EXISTS messages (
id BIGINT AUTO_INCREMENT PRIMARY KEY,
content varchar(300) NOT NULL,
createdate TIMESTAMP(6) NOT NULL DEFAULT CURRENT_TIMESTAMP
);
INSERT INTO messages (
content
) VALUES (
'MemSQL running on Windows'
);
SELECT * FROM messages;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment