How do you expect to get 12 separate monthly figures out for FUND_ID 50 with
only 4 records?
The percent sign should only be used as a a label and not in data unless it
is text like a sentence.
Dates need to be in datetime fields, not as a number. You will need to
convert your dates like --
SELECT Table18.FUND_ID,
DateSerial(Left([BEGIN_DATE],4),Right(Left([BEGIN_DATE],6),2),Right([BEGIN_DATE],2))
AS [BEGIN],
DateSerial(Left([END_DATE],4),Right(Left([END_DATE],6),2),Right([END_DATE],2)) AS [END], [FEES]/100 AS FEE
FROM Table18;
> I am new to SQL and need help in extracting some data from a table.
>
[quoted text clipped - 27 lines]
> 52 -- -- -- (0.3/12) (0.3/12) --.....-- -- -- ..
> -- -- --