partridge80
Technical User
I have a file that contains a number of lines for each month. New data gets added to it each month. The month is in the format YYYYMM and I wish to create a smaller table that only contains the latest month's infomation. I hoped it was as easy as
Select name, address
from clientinfo
...where Max(Date)
but I received an error message, can any body help
From novice SQL man
Select name, address
from clientinfo
...where Max(Date)
but I received an error message, can any body help
From novice SQL man