I have a table that return minutes from a task and I\'d like to convert into hours and minutes.
my select is:
select m.mat_nome as \'Matéria\', round
You should look up FLOOR() function, and simple math. You need something like
CONCAT(FLOOR(minutes/60),'h ',MOD(minutes,60),'m')