Created
September 29, 2014 03:11
-
-
Save PMeinshausen/8825bd898126ab5d7788 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
--Syntax (version 1.3) | |
SELECT * | |
FROM nGram | |
( | |
ON {table_name | view_name | (query)} | |
TEXT_COLUMN('column_name') | |
[DELIMITER('delimiter_regular_expression')] | |
GRAMS(gram_number) | |
[OVERLAPPING({'true'|'false'})] | |
[CASE_INSENSITIVE({'true'|'false'})] | |
[PUNCTUATION('punctuation_regular_expression')] | |
RESET('reset_regular_expression') | |
[TOTAL] | |
[TOTAL_COUNT_COLUMN_NAME] | |
[ACCUMULATE('column_name [, ...]')] | |
[NGRAM_COLUMN_NAME('column_name')] | |
[COUNT_COLUMN_NAME('column_name')] | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment