We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bcf038 commit 5ac78a8Copy full SHA for 5ac78a8
README.md
@@ -8,6 +8,20 @@
8
9
sql grammar follows https://dev.mysql.com/doc/refman/5.7/en/select.html
10
11
+## unsupport currently
12
+
13
+- Hexadecimal Literals as x'01af' X'01af', but 0x01af is supported.
14
+- keyword COLLATE.
15
+- parammarker: keyword PREPARE / EXECUTE / DEALLOCATE
16
+- variable: keyword SET / CREATE PROCEDURE / CREATE FUNCTION
17
+- identifier expr: ODBC escape syntax
18
+- matchexpr: Full-Text Search Functions. //to support
19
+- intervalexpr: Date INTERVAL keyword. //to support
20
21
+note:
22
+this sql parser doesn't keep operator precedence currently (in bitExpr). it will be support later.
23
+it keep parser.parse and parse.stringify is stable.
24
25
## commonjs usage
26
27
`npm install --save js-sql-parser`
0 commit comments