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
Raw Permalink Normal View History

2021-03-18 10:38:28 +00:00
const con = require('./connect');
2021-03-12 15:26:02 +00:00
module.exports = function selectCollectionSmartTag(collectionFk) {
const sql = `SELECT * FROM vn.collectionSmartTag WHERE collectionFk = ?;`;
return con.query(sql, collectionFk);
};
2021-03-12 15:26:02 +00:00