现在想在js里实现一个sql调用:select
GROUP_CONCAT(CONCAT('"',`phone`,'"') SEPARATOR ',') from table where DATE_FORMAT(date,'%Y-%m-%d %H:%i') = '2022-06-27 08:23';不知该在js里如何写并获取sql结果,sql的条件有格式化函数,前面查询是分组拼接函数后的值。我尝试的写法有:var sql = "select GROUP_CONCAT(CONCAT('"',`phone`,'"') SEPARATOR ',') from attendance_checktime a where DATE_FORMAT(checkdate, '%Y-%m-%d %H:%i') = '"+cdate+"'";var res = FR.remoteEvaluate('=sql("ldjsc-view","' + sql + '",1,1)');直接在前端报错了Uncaught (in promise) SyntaxError: unexpected token: string literal