Hi
I have a query based on this SQL:
IssueID is set to AutoNum. I want to delete this record but I get an error message
[text]Could not delete from specified tables[/text]
What I'm trying to do with this query is to use it as the basis of another query to delete the last record I added.
How can I either, A) get this query to not have the record be locked, or B) figure out another way to delete the last record added.
Any help would be appreciated. Thanks!
Jim DeGeorge![[wavey] [wavey] [wavey]](/data/assets/smilies/wavey.gif)
I have a query based on this SQL:
Code:
SELECT Max(tblIssues.IssueID) AS MaxOfIssueID
FROM tblIssues
ORDER BY Max(tblIssues.IssueID) DESC;
IssueID is set to AutoNum. I want to delete this record but I get an error message
[text]Could not delete from specified tables[/text]
What I'm trying to do with this query is to use it as the basis of another query to delete the last record I added.
How can I either, A) get this query to not have the record be locked, or B) figure out another way to delete the last record added.
Any help would be appreciated. Thanks!
Jim DeGeorge
![[wavey] [wavey] [wavey]](/data/assets/smilies/wavey.gif)