Created
July 29, 2017 15:47
-
-
Save schweigert/e565586f494113020ea5190bf93a0f4b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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