Selecione registros por hora, no intervalo entre 12:00:00 e 18:00:00 todos os dias

Tentei selecionar todos os registros em uma tabela com o timestamp no dateformat 2011-08-01-

12: 00: 00

Usando o seguinte código:

SELECT f.`fly_reg`, RIGHT(f.`start_tid`,8) AS st, f.`start_hight`
FROM vbsk_dk_02.fab_master_flyvedata f 
Where st between 12:00:00 AND 18:00:00

Mas não pode fazê-lo funcionar

questionAnswers(2)

yourAnswerToTheQuestion