Just thought I would share a simple system I have been using with the smartform database and would be great if others could share some more.
The below system shows horses that won LTO and are running again within 7 days (Basically ahead of the Handicapper)
SQL :
select daily_races.course, daily_races.scheduled_time, daily_runners.name, daily_runners.form_figures,
CONVERT(SUBSTRING(daily_runners.form_figures,-1),UNSIGNED INTEGER) AS LTO_Place, daily_runners.days_since_ran
from daily_runners
join daily_races on daily_runners.race_id=daily_races.race_id
where meeting_date = '2017-09-06' AND daily_runners.days_since_ran < 8 AND CONVERT(SUBSTRING(daily_runners.form_figures,-1),UNSIGNED INTEGER) = 1