我想将此字符串转换为JSON。
我的代码是将字符串转换为JSON:
select t.*
from tableau t
where 2 = (select 1 + count(*)
from tableau t2
where t2.score > t.score or
(t2.score = t.score and t2.name < t.name)
);
解析时出现此错误: 无法读取数据,因为格式不正确。