我正在使用NodeJ。用于编写查询的连接器X-devAPI。我需要使用联接查询。如何编写查询?
const session = mySqlx.getSession(config);
const schema = await session.getSchema('xxxx');
let tableresp = await schema.getTable('tableName');
tableresp = await tableresp
.select(['id', 'name', 'Mobile'])
.execute(function (row) {
console.log(row)
});
答案 0 :(得分:1)
目前,您必须使用普通的SQL查询。
await session.sql('SELECT id, name, Mobile FROM xxxx.tableName JOIN ...').execute()
很抱歉,您的回答很晚。您正在看的标签中没有出现您的问题。
免责声明:我是负责Node.js的MySQL X DevAPI Connector的主要开发者