ace/lib/ace/mode/_test/tokens_sql.json
2013-01-20 16:47:49 +04:00

54 lines
No EOL
979 B
JSON

[[
"start",
["keyword","SELECT"],
["text"," "],
["identifier","city"],
["text",", "],
["support.function","COUNT"],
["paren.lparen","("],
["identifier","id"],
["paren.rparen",")"],
["text"," "],
["keyword","AS"],
["text"," "],
["identifier","users_count"]
],[
"start",
["keyword","FROM"],
["text"," "],
["identifier","users"]
],[
"start",
["keyword","WHERE"],
["text"," "],
["identifier","group_name"],
["text"," "],
["keyword.operator","="],
["text"," "],
["string","'salesman'"]
],[
"start",
["keyword","AND"],
["text"," "],
["identifier","created"],
["text"," "],
["keyword.operator",">"],
["text"," "],
["string","'2011-05-21'"]
],[
"start",
["keyword","GROUP"],
["text"," "],
["keyword","BY"],
["text"," "],
["constant.numeric","1"]
],[
"start",
["keyword","ORDER"],
["text"," "],
["keyword","BY"],
["text"," "],
["constant.numeric","2"],
["text"," "],
["keyword","DESC"]
]]