从Datalog到SQL3
SQL3:
with recusive Reaches(destination,departs) as
(select destination,departs from Flight)
union
(select R1.destination,R2.departs
from Reaches as R1, Reaches as R2
where R1.departs=R2.destination)
select * from Reaches;
Of all the riches available to us in life, self-discipline is surely one of, if not the, most valuable. All things worth achieving can be accomplished with the power of self-discipline. With it we are masters of the energy weexpend in life. Without it we are victims of our own unfocused and constantly changing efforts, desires and directions.