노드 js와 제한 및 편이Mysql 왼쪽 연결
let query = `select audio.title as title, audio.artist ,audio.fileName, audio.date,album.title as albumtitle from audio left join album on audio.album = album.id order by audio.id LIMIT 10 offset ${offset}`;
console.log(query);
connection.query(query, function(error, result, fields) {
if (error) {
console.log(`error ${error}`);
callback(error, null);
}else {
console.log(result);
callback('success', result);
}
});
콘솔의 결과select audio.title as title, audio.artist ,audio.fileName, audio.date,album.title as albumtitle from audio left join album on audio.album = album.id order by audio.id LIMIT 10 offset 0
[
RowDataPacket {
title: 'Audio Title',
artist: null,
fileName: 'audio-1600246003244ha.mp3',
date: 2020-09-16T08:46:43.000Z,
albumtitle: 'Jal Pari'
},
RowDataPacket {
title: 'Another audio',
artist: null,
fileName: 'audio-1600246030100gs.mp3',
date: 2020-09-16T08:47:10.000Z,
albumtitle: 'Jal Pari'
},
RowDataPacket {
title: 'Some title',
artist: null,
fileName: 'audio-1600246129892gs.mp3',
date: 2020-09-16T08:48:50.000Z,
albumtitle: 'Jal Pari'
},
RowDataPacket {
title: 'Upload Another',
artist: null,
fileName: 'audio-1600246160918la.mp3',
date: 2020-09-16T08:49:21.000Z,
albumtitle: null
},
RowDataPacket {
title: 'Tere sang yaara',
artist: 'Atif Aslam',
fileName: 'audio-1600349287336an.mp3',
date: 2020-09-17T13:28:07.000Z,
albumtitle: null
}
]
만약 이것이 너에게 도움이 된다면 반드시 엄지손가락을 세워야 한다.고마워요 고마워요
Reference
이 문제에 관하여(노드 js와 제한 및 편이Mysql 왼쪽 연결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/zeeshanmehdi/node-js-left-join-with-limit-and-offset-msql-2k1o텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)