taphonomist
Programmer
I get syntax errors with this
while this
works fine. What's going on???
taphonomist
Code:
select but
from
(select
bte.buildfile, max(bt.buildtime) as but
from buildtimeestimator bte, buildtime bt
where bte.buildfile=bt.buildfile
group by bte.buildfile)
while this
Code:
select
bte.buildfile, max(bt.buildtime) as but
from buildtimeestimator bte, buildtime bt
where bte.buildfile=bt.buildfile
group by bte.buildfile
works fine. What's going on???
taphonomist