Skip to content

Instantly share code, notes, and snippets.

@corani
Created March 30, 2011 05:35
Show Gist options
  • Save corani/893912 to your computer and use it in GitHub Desktop.
Save corani/893912 to your computer and use it in GitHub Desktop.
Setup data
List<Integer> items = Arrays.asList(
new Integer[] { 1, 2, 3, 5, 8, 13, 21 });
items = [ 1, 2, 3, 5, 8, 13, 21 ]
CREATE TABLE items (value INT);
INSERT INTO items (value) VALUES
(1), (2), (3), (5), (8), (13), (21);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment