Se vuoi fare una ricerca su più tabelle devi ricorrere alle union
codice:
SELECT * FROM FILE_VIDEO WHERE DESCRIZIONE like "%quello_che_vuoi%"
union
SELECT * FROM tabella2 WHERE DESCRIZIONE like "%quello_che_vuoi%"
union
SELECT * FROM tabella3 WHERE DESCRIZIONE like "%quello_che_vuoi%"
union
SELECT * FROM tabella4 WHERE DESCRIZIONE like "%quello_che_vuoi%"
union
SELECT * FROM tabella5 WHERE DESCRIZIONE like "%quello_che_vuoi%"
Resta il fatto che anzichè ricorrere a 5 tabelle diverse, se queste hanno tutte la stessa struttura, sarebbe più corretto usarne una sola con un campo che specifica la tipologia.