79503900

Date: 2025-03-12 14:31:13
Score: 2
Natty:
Report link

select a.company, a.num, c.name, d.name

from route a join route b on (a.company, a.num) = (b.company, b.num)

join stops c on (a.stop = c.id)

join stops d on (b.stop = d.id)

where c.name = 'Craiglockhart' and d.name = 'London Road'

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: kovego73