断言(Assertions): pm.expect:用于断言测试。 pm.response.to.have.status(200):断言响应状态码为200。 示例: pm.test("Status code is 200", function () { pm.response.to.have.sta Read More
1、查询所有记录 db.userInfo.find(); 相当于: select* from userInfo; 默认每页显示20条记录,当显示不下的情况下,可以用it迭代命令查询下一页数据。注意:键入it命令不能带“;”但是你可以设置每页显示数据的大小,用DBQuery.shellBatchSiz Read More
## SQL语法差异:### doris中不支持分组列再使用distinctMSYQL:```SQLselect DISTINCT mid from order_card_detail GROUP BY mid```DORIS:```SQLselect mid from order_card_det Read More