Skip to content

Instantly share code, notes, and snippets.

@schweigert
Created July 29, 2017 15:47
Show Gist options
  • Select an option

  • Save schweigert/e565586f494113020ea5190bf93a0f4b to your computer and use it in GitHub Desktop.

Select an option

Save schweigert/e565586f494113020ea5190bf93a0f4b to your computer and use it in GitHub Desktop.
CREATE SCHEMA `superfactorial` ;
CREATE TABLE `superfactorial`.`fat` (
`n` INT NOT NULL,
`f` LONGTEXT NOT NULL,
PRIMARY KEY (`n`));
CREATE TABLE `superfactorial`.`sfat` (
`n` INT NOT NULL,
`f` LONGTEXT NULL,
PRIMARY KEY (`n`));
delete from fat;
delete from sfat;
insert into fat values (0, "1");
insert into fat values (1, "1");
insert into sfat values (0, "1");
insert into sfat values (1, "1");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment