This repository has been archived on 2024-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
smart-tag/db/selectCollection.js

8 lines
226 B
JavaScript

const con = require('./connect');
module.exports = function selectCollectionSmartTag(collectionFk) {
const sql = `SELECT * FROM vn.collectionSmartTag WHERE collectionFk = ?;`;
return con.query(sql, collectionFk);
};