Is there a jQuery or JavaScript module that creates the SQL query builder interface?

We are currently using something called QueryBuilderWidget based on script.aculo.us. This was implemented some time ago, and I can no longer find the project site. But it looks a lot like the YUI Query Builder .

The functionality is great, but we do not use scripts for anything else. The rest of the site uses jQuery or direct JavaScript. I am looking for a module with similar functions that is either direct JavaScript or jQuery. I saw this plugin and I could use this as a starting point if there was nothing.

+6
source share
4 answers

I searched the ad-hoc pivot table web interface and came across http://mistic100.imtqy.com/jQuery-QueryBuilder/index.html , which seems to work nicely with the filter / where snippet snippet.

+1
source

I recently released a SQL JavaScript query builder that works in a browser and node.js - http://squeljs.org

+3
source

It's probably too late, but I'm working on a SQL Builder JavaScript user interface that will do joins, etc. http://redquerybuilder.appspot.com/ which may be of interest. At an early stage, but I’m very interested in what functions people consider to be missing / broken.

+3
source

From here you can find your answer

https://github.com/gantir/jsexpbuilder

You can also customize it according to your requirement.

0
source

Source: https://habr.com/ru/post/900251/


All Articles