摘要: 撤回消息 请求URL: http://域名地址/revokeMsg 请求方式: POST 请求头Headers: Content-Type:application/json Authorization:login接口返回 参数: 参数名必选类型说明 wId 是 string 登录实例标识 wcId 阅读全文
posted @ 2023-08-18 17:30 WeChat——E云 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 一、一些常见的SQL实践 (1)负向条件查询不能使用索引 select * from order where status!=0 and stauts!=1 not in/not exists都不是好习惯 可以优化为in查询: select * from order where status in( 阅读全文
posted @ 2023-08-18 17:20 WeChat——E云 阅读(21) 评论(0) 推荐(0) 编辑