SQL-To-ElasticSearch icon indicating copy to clipboard operation
SQL-To-ElasticSearch copied to clipboard

SQL to ElasticSearch Query Converter

Results 2 SQL-To-ElasticSearch issues
Sort by recently updated
recently updated
newest added

input ```select name from users where name='nick' and name='zxc'``` output ```POST users/_search { "query": { "bool": { "must": [ { "match": { "name": "nick" } }, { "match": { "name":...