G
Guest
This is posting I have posted in many new newsgroups. And after many
responses saying I can't do it. I would like a way around what I'm trying to
do this.
My posting:
I created many query to export out information to keep the working database
a little smaller. I would like to delete the information after I have expor
ted it out. I have be told many ways That I can't export from a joined tabl
e. But I'm hoping someone has an idea how I can delete this information.
I have created a query that show all the records form Material Estimation ta
ble that the job number matches in the Production Table, that the AssDate is
between the frm_Export_Data dates.
This the SQL view of the query.
DELETE [Material Estimation].*, Production.[AssDate]
FROM [Material Estimation] INNER JOIN Production ON [Material Estimation].[J
ob Number] = Production.[Job #]
WHERE (((Production.[AssDate]) Between [Forms]![frm_Export_Data]![FromDate]
And [Forms]![frm_Export_Data]![ToDate]));
I want to delete all the records in the Material Estimation table that show
up in this query.
Is this possible?
Thank you..
Please someone have an Idea!!!
responses saying I can't do it. I would like a way around what I'm trying to
do this.
My posting:
I created many query to export out information to keep the working database
a little smaller. I would like to delete the information after I have expor
ted it out. I have be told many ways That I can't export from a joined tabl
e. But I'm hoping someone has an idea how I can delete this information.
I have created a query that show all the records form Material Estimation ta
ble that the job number matches in the Production Table, that the AssDate is
between the frm_Export_Data dates.
This the SQL view of the query.
DELETE [Material Estimation].*, Production.[AssDate]
FROM [Material Estimation] INNER JOIN Production ON [Material Estimation].[J
ob Number] = Production.[Job #]
WHERE (((Production.[AssDate]) Between [Forms]![frm_Export_Data]![FromDate]
And [Forms]![frm_Export_Data]![ToDate]));
I want to delete all the records in the Material Estimation table that show
up in this query.
Is this possible?
Thank you..
Please someone have an Idea!!!