Created
July 13, 2016 21:13
-
-
Save ibspoof/8683d651a41dc41ad95475271d52c223 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
'F-14D Super Tomcat' | Grumman | 1987 | 2.34 | |
---|---|---|---|---|
'MiG-23 Flogger' | Russian-made | 1964 | 2.35 | |
'Su-27 Flanker' | U.S.S.R. | 1981 | 2.35 |
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
CREATE KEYSPACE IF NOT EXISTS test WITH REPLICATION = { 'class' : 'NetworkTopologyStrategy', 'dc1' : 1 }; | |
CREATE TABLE IF NOT EXISTS test.airplanes ( | |
name text PRIMARY KEY, | |
manufacturer ascii, | |
year int, | |
mach float | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment