simpleSqlParser icon indicating copy to clipboard operation
simpleSqlParser copied to clipboard

Javascript library to parse CRUD (Create Retrieve Update Delete) SQL queries.

Results 8 simpleSqlParser issues
Sort by recently updated
recently updated
newest added

Using MySQL as target, I can insert multiple values at once using the following syntax ```SQL INSERT INTO mytable (id,first_name,last_name) VALUES (1,'John','Doe'), VALUES (2,'Jane','Doe'), VALUES (3,'Donald','Trump'), ``` However, using the...

It is the same as the other PR. I checked that I used the last version of v2 branch. Thanks

Hi, I am currently trying to use the following statement for a influx DB query which fails because of different aspects ``` sql SELECT derivate(mean(value)) AS value FROM "this.is.a.crazy.table" WHERE...

can not use. Too much defects . 1. does not support comment 2. does not support LEFT OUT JOIN 3. does not support nested table SELECT \* FROM (SELECT A...

Continuing on the discussion from my PR, I think it would be valuable to split version 2 up into various smaller files that can be minified together for usage on...

I have digged a bit deeper into the code and have noted some issues, which are in my opinion are due to the fact, that the input string is not...