Skip to content

Instantly share code, notes, and snippets.

@VeryFatBoy
Forked from robrich/select-into-var.sql
Created October 12, 2021 16:29
Show Gist options
  • Save VeryFatBoy/9a07e769fb08c981217ad50a7b0405fa to your computer and use it in GitHub Desktop.
Save VeryFatBoy/9a07e769fb08c981217ad50a7b0405fa to your computer and use it in GitHub Desktop.
SQL Programmability with variables in SingleStore
CREATE DATABASE IF NOT EXISTS acme;
USE acme;
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 (
'select ... into @var'
);
-- Incorrect syntax:
--declare @id bigint;
-- Use this instead:
select 1 into @id;
-- Now use variables:
select id, content, createdate
from messages
where id = @id;
-- We can do this in queries as well:
select content, createdate into @content, @date
from messages
where id = 1;
select @content, @date;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment