Code Monkey home page Code Monkey logo

querybuilder's Introduction

Query Builder with .net core

  You can generate a sql command from a SQL Json file.

Basic query

Input

{
  "tableName": "Product",
  "selectcolumns": [ "Id", "Name", "Price" ],
  "Filtercolumns": [
    {
      "operator": ">",
      "fieldName": "Price",
      "typeFilter": "AND",
      "fieldValue": "14"
    },
    {
      "operator": "=",
      "fieldName": "Name",
      "typeFilter": "AND",
      "fieldValue": "Test"
    }
  ]
}

Output

SELECT
      Product.Id,
      Product.Name,
      Product.Price
FROM Product
WHERE Price > (14)
AND Name = (Test)

Basic query with BETWEEN

Input

{
  "tableName": "Product",
  "selectcolumns": [ "Id", "Name", "Price" ],
  "Filtercolumns": [
    {
      "operator": "BETWEEN",
      "fieldName": "Price",
      "typeFilter": "AND",
      "fieldValueFirst": "10",
      "fieldValueSecond": "20"
    }
  ]
}

Output

SELECT
    Product.Id,
    Product.Name,
    Product.Price
FROM Product
WHERE Price BETWEEN 10 AND 20

Basic query with join

Input

{
  "tableName": "Product",
  "selectcolumns": [ "Id", "Name", "Price" ],
  "Filtercolumns": [
    {
      "operator": ">",
      "fieldName": "Price",
      "typeFilter": "AND",
      "fieldValue": "14"
    },
    {
      "operator": "=",
      "fieldName": "Name",
      "typeFilter": "AND",
      "fieldValue": "Test"
    },
    {
      "operator": "<",
      "fieldName": "Price",
      "typeFilter": "AND",
      "JoinTable": "HistoryPrice",
      "JoinTableColumn": "LastPrice"
    }
  ],
  "TableJoins": [
    {
      "tableName": "HistoryPrice",
      "typeJoin": "INNER",
      "RerefenceTableFieldName": "Id",
      "FieldName": "ProductId"
    }
  ]
}

Output

SELECT
    Product.Id,
    Product.Name,
    Product.Price
FROM Product
INNER JOIN HistoryPrice ON Product.Id=HistoryPrice.ProductId
WHERE Price > (14)
AND Name = (Test)
AND Price < (HistoryPrice.LastPrice)

Sub query

Input

{
  "tableName": "Product",
  "selectcolumns": [ "Id", "Name", "Price" ],
  "Filtercolumns": [
    {
      "operator": "BETWEEN",
      "fieldName": "Price",
      "typeFilter": "AND",
      "fieldValueFirst": "10",
      "fieldValueSecond": "20"
    },
    {
      "operator": "> ALL",
      "fieldName": "price",
      "typeFilter": "AND",
      "subquery": {
        "tableName": "HistoryPrice",
        "selectcolumns": [ "LastPrice" ],
        "Filtercolumns": [
          {
            "operator": "=",
            "fieldName": "LastPrice",
            "typeFilter": "AND",
            "fieldValue": "100"
          }
        ]
      }
    }
  ]
}

Output

SELECT
    Product.Id,
    Product.Name,
    Product.Price
FROM Product
WHERE Price BETWEEN 10 AND 20
AND price > ALL (SELECT
                    HistoryPrice.LastPrice
                    FROM HistoryPrice
                    WHERE LastPrice = (100))

Complex query

Input

{
  "tableName": "Product",
  "selectcolumns": [ "Id", "Name", "Price" ],
  "Filtercolumns": [
    {
      "operator": ">",
      "fieldName": "Price",
      "typeFilter": "AND",
      "fieldValue": "14"
    },
    {
      "operator": "=",
      "fieldName": "Name",
      "typeFilter": "AND",
      "fieldValue": "Test"
    },
    {
      "operator": "<",
      "fieldName": "Price",
      "typeFilter": "AND",
      "JoinTable": "HistoryPrice",
      "JoinTableColumn": "LastPrice"
    },
    {
      "operator": "BETWEEN",
      "fieldName": "Price",
      "typeFilter": "AND",
      "fieldValueFirst": "10",
      "fieldValueSecond": "20"
    },
    {
      "operator": "> ALL",
      "fieldName": "price",
      "typeFilter": "AND",
      "subquery": {
        "tableName": "HistoryPrice",
        "selectcolumns": [ "LastPrice" ],
        "Filtercolumns": [
          {
            "operator": "=",
            "fieldName": "LastPrice",
            "typeFilter": "AND",
            "fieldValue": "100"
          }
        ]
      }
    }
  ],
  "TableJoins": [
    {
      "tableName": "HistoryPrice",
      "typeJoin": "INNER",
      "RerefenceTableFieldName": "Id",
      "FieldName": "ProductId"
    }
  ]
}

Output

SELECT
    Product.Id,
    Product.Name,
    Product.Price
FROM Product
INNER JOIN HistoryPrice ON Product.Id=HistoryPrice.ProductId
WHERE Price > (14)
AND Name = (Test)
AND Price < (HistoryPrice.LastPrice)
AND Price BETWEEN 10 AND 20
AND price > ALL (SELECT
                  HistoryPrice.LastPrice
                  FROM HistoryPrice
                  WHERE LastPrice = (100))

querybuilder's People

Contributors

jeancarloskruger avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.