F
Fred Boer
I can select and delete a record on my form, and the record appears to have
been deleted, that is to say, it no longer is displayed by the form.
However, if I go back to the underlying tables, the record is still there! I
suspect I might have a non-updateable query. After a long, frustrating
battle with Access Help (Can anyone tell me "updatable" doesn't find
information on the subject?!...arrrghh!). I *think* I have found some
information, however, before I dive into all of that information, I'd
appreciate it if someone could tell me if I am heading in the right
direction. Here's the SQL:
SELECT Tbl_Library.*, [tbl_Library].[dewey] & " / " &
UCase(Left([AuthorLastName],3)) AS CallNumber
FROM Tbl_Library INNER JOIN (Tbl_Author INNER JOIN Tbl_BookAuthor ON
Tbl_Author.Author_ID = Tbl_BookAuthor.Author_ID) ON Tbl_Library.Book_ID =
Tbl_BookAuthor.Book_ID
WHERE (((Tbl_BookAuthor.PrimaryAuthor)=-1))
ORDER BY Tbl_Library.Book_ID;
If it *is* a problem with updateability, some suggestion about how to work
around this would also be greatly appreciated!
Many thanks!
Fred Boer
been deleted, that is to say, it no longer is displayed by the form.
However, if I go back to the underlying tables, the record is still there! I
suspect I might have a non-updateable query. After a long, frustrating
battle with Access Help (Can anyone tell me "updatable" doesn't find
information on the subject?!...arrrghh!). I *think* I have found some
information, however, before I dive into all of that information, I'd
appreciate it if someone could tell me if I am heading in the right
direction. Here's the SQL:
SELECT Tbl_Library.*, [tbl_Library].[dewey] & " / " &
UCase(Left([AuthorLastName],3)) AS CallNumber
FROM Tbl_Library INNER JOIN (Tbl_Author INNER JOIN Tbl_BookAuthor ON
Tbl_Author.Author_ID = Tbl_BookAuthor.Author_ID) ON Tbl_Library.Book_ID =
Tbl_BookAuthor.Book_ID
WHERE (((Tbl_BookAuthor.PrimaryAuthor)=-1))
ORDER BY Tbl_Library.Book_ID;
If it *is* a problem with updateability, some suggestion about how to work
around this would also be greatly appreciated!
Many thanks!
Fred Boer