华为云Astro轻应用-脚本代码性能检查规则说明:规则7:SELECT语句中严禁使用“select from...”形式查询语句
时间:2025-02-12 14:58:39
规则7:SELECT语句中严禁使用“select from...”形式查询语句
严禁使用“select ...”形式查询语句,请指出select的具体字段。
- 错误代码示例
import * as db from 'db';let errorDemo = db.sql().exec("select from object_demo where object_name = 'test'")
- 正确代码示例
import * as db from 'db';let correctDemo = db.sql().exec("select id, object_type from object_demo where object_name = 'test'")
support.huaweicloud.com/usermanual-astrozero/astrozero_05_05001.html