Hi, with my query, it is inserting all the data from bilact table to my temptable tblCurrent_Month. But I just need to insert the data where the month of Bcr_Billing_period. Ie I give 01/23/2006 it needs to pick the data where Bcr_Billing_Period is between 01/01/2006 to 01/31/2006.
My data for BCR_Billing_period is like this 200210 (only year and month)
SELECT Bilact.Bcr_Group_num, Bilact.Bcr_Group_loc, Bilact.Bcr_Billing_Period, Bilact.Bcr_Billed_Amount
INTO tblCurrent_Month
FROM bilact
Please help
My data for BCR_Billing_period is like this 200210 (only year and month)
SELECT Bilact.Bcr_Group_num, Bilact.Bcr_Group_loc, Bilact.Bcr_Billing_Period, Bilact.Bcr_Billed_Amount
INTO tblCurrent_Month
FROM bilact
Please help