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.
2021-03-18 10:38:28 +00:00
|
|
|
const con = require('./connect');
|
2021-03-12 15:26:02 +00:00
|
|
|
|
2022-03-31 10:27:30 +00:00
|
|
|
module.exports = function selectCollectionSmartTag(collectionFk) {
|
2022-03-31 09:44:35 +00:00
|
|
|
const sql = `SELECT * FROM vn.collectionSmartTag WHERE collectionFk = ?;`;
|
2022-03-31 10:27:30 +00:00
|
|
|
return con.query(sql, collectionFk);
|
|
|
|
};
|
2021-03-12 15:26:02 +00:00
|
|
|
|