# HG changeset patch # User sem4j # Date 1380528576 14400 # Node ID 51847f1c0acb859a6ffd283653506733fb27e517 # Parent dc54d40d4748087660523e1c594145fdfbf3f162 Uploaded diff -r dc54d40d4748 -r 51847f1c0acb sqlite.xml --- a/sqlite.xml Mon Sep 30 04:09:00 2013 -0400 +++ b/sqlite.xml Mon Sep 30 04:09:36 2013 -0400 @@ -9,10 +9,10 @@ - + - + @@ -22,6 +22,59 @@ -**What it does** + +**Tables** + +Select all table to be joined. + +---- + +**Use the first line as column names** + +When the input file has column header:: + + id name + 101 John + 102 Mary + +Check this box and use column names ('id' and 'name') to write queries: + + SELECT * FROM t1 WHERE c2 = 'John'; + +When the input file does not have column header:: + + 101 John + 102 Mary + +Uncheck this box and use c1, c2, c3, ... to write queries: + + SELECT * FROM t1 WHERE name = 'John'; + +---- + +**Index** + +Comma-delimited list of column numbers. + +Example: + + 2,3 + +This creates NOT a composite index BUT two different indices on column 2 and on column 3. + +---- + +**Print column names in the first row** + +Example:: + + col1 col2 col3 + aaaa bbbb cccc + aaaa dddd eeee + +---- + +**SQL** +