将json转换为MySql语句

将json转换为MySql语句

例如下面的一段json:

{
  "Entity": {
    "Main": {
      "note_details": true
    }
  },
  "Condition": {
    "Equ": {
      "note_details": {
        "title": "hello,world."
      }
    }
  }
}

转换为MySql语句如下:

SELECT `note_details`.`id`,`note_details`.`title`,`note_details`.`content`,`note_details`.`weather`,`note_details`.`create_time`,`note_details`.`update_time`,`note_details`.`modified_time`,`note_details`.`valid` FROM   `note_details`    WHERE  `note_details`.`title` = 'hello,world.' 

使用C#转换

var jsonEntity = new JsonEntityToSql("server=127.0.0.1;user id=root;password=123456;persistsecurityinfo=True;database=one_note");

var sql = jsonEntity.Json2SelectSql("{\"Entity\":{\"Main\":{\"note_details\":true}},\"Condition\":{\"Equ\":{\"note_details\":{\"title\":\"hello,world.\"}}}}");

一、SQL操作符对应的JSON变量:

SQL的关键字JSON对应的变量
=Equ
<>NotEqu
>Greater
<Less
>=GreaterEqu
<=LessEqu
BETWEEN ANDBetween
NOT BETWEEN ANDNotBetween
LIKELike
NOT LIKENotLike
ANDAnd
OROr
()Block
ORDER BYOrder
INNER JOINLink
LIMITLimit
LEFT JOINLinkLeft
RIGHT JOINLinkRight

支持连表等高级语法,由于工作时间的缘故,目前还没有时间,更复杂的JSON转SQL文档,以后有时间会发布出来。

github开源代码

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>