for example, I use the
provided by the egg-mysql framework. const results = await this.app.mysql.select("posts", { // post
where: { status: "draft", author: ["author1", "author2"] }, // WHERE
columns: ["author", "title"], //
orders: [["created_at","desc"], ["id","desc"]], //
limit: 10, //
offset: 0, //
});
how can I see the native sql statement executed by this encapsulated statement?