1 2 3 4 5 6 7 8 9
|
select n.video_id,n.fichier as new_fichier,n.titre as new_titre,nt.modele as new_modele,n.description as new_description,nt.fiche as new_fiche,n.keywords as new_keywords,n.codehtml as new_codehtml,n.type_video_id as new_type_video_id,n.vu as new_vu,n.note_equip as new_note_equip,n.note_fab as new_note_fab,n.note_main as new_note_main,n.note_sonore as new_note_sonore,n.note_rapport as new_note_rapport,n.note_verdict as new_note_verdict,n.duree as new_duree,n.type_video_id as new_type_video_id,p.photo_id,p.fichier as photo_fichier,p.titre as photo_titre,p.description as photo_description,p.keywords as photo_keywords,p.date as photo_date
from videos n
left join types_videos nc on nc.type_video_id=n.type_video_id
left join videos_photos np on np.video_id=n.video_id
left join videos_objets nb on nb.video_id=n.video_id and nb.objet_id=n.objet_id
left join photos p on np.photo_id=p.photo_id
left join objets nt on nt.objet_id=n.objet_id
order by n.video_id desc |
Partager