m.uid::text=mf.member_uid::text
This commit is contained in:
@@ -404,7 +404,7 @@ app.get('/mytask/:filename', (req, res)=>{
|
||||
console.log("myfilesCommonPath ==> " + myfilesCommonPath);
|
||||
// var findFilename = '';
|
||||
//c35c32bc-9ce4-4ca5-9afc-1ecddfd649f5
|
||||
let Qstring = "SELECT mf.*, m.uid AS member_uid FROM members_jobs_files mf LEFT JOIN members m ON m.uid=mf.member_uid WHERE mf.uid='"+fileName+"'";
|
||||
let Qstring = "SELECT mf.*, m.uid AS member_uid FROM members_jobs_files mf LEFT JOIN members m ON m.uid::text=mf.member_uid::text WHERE mf.uid='"+fileName+"'";
|
||||
console.log("Qstring -> ", Qstring);
|
||||
db.query(Qstring, function (err, result) {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user