Last active
November 5, 2020 15:43
-
-
Save Ben-Epstein/05d6610a8d3b8a28b07aeca64d30e091 to your computer and use it in GitHub Desktop.
This file contains 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
%%sql | |
insert into iris_model (sepal_length, sepal_width, petal_length, petal_width, moment_id) values (5.1, 3.5, 1.4, 0.2, 0); | |
insert into iris_model (sepal_length, sepal_width, petal_length, petal_width, moment_id) values (6.4, 2.7, 5.3, 2.0, 1); | |
select * from iris_model; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment