SELECT requests.*
FROM (SELECT export_id, max(imported_at) AS imported_at
FROM requests
GROUP BY export_id) as t
JOIN requests ON requests.export_id = t.export_id
AND requests.imported_at = t.imported_at
ORDER BY `requests`.export_id DESC
<label class="form-check-label test__checkBox__label d-flex" :for="ans.name">
<vue-mathjax :formula="ans.name"></vue-mathjax>
</label>
import VueMathjax from 'vue-mathjax-next';
export default {
name: 'lessonvue',
data() {
return {
step: 0,
answer: '',
score: 0,
toNext: true,
questions: [],
curantQuestion: [],
answers: [],
}
},
components: {
YoutubeVue3,
'vue-mathjax': VueMathjax,
},