Query in Access 2000 - You can use the database "WEEK1_Q1_Q2_ACCESS2000.mdb" attached to Lecture 1 if you want to play around with this query before answering:
OK, I'm writing a query in Access 2000:
...
Why wont this query run? - OK, why wont this query run (using the database "WEEK1_Q1_Q2_ACCESS2000.mdb" attached here)?
SELECT author_name
FROM author
WHERE author_name like "Twain, Mark";
Running a Query - Why wont this query run?
SELECT authors.author_name
FROM authors
WHERE authors.author_name Like *twain*;
PQ#1 Why wont this query give me any results? - Why wont this query give me any results?
SELECT author_name
FROM authors
WHERE author_name = "*Twain, Mark*";
After all, the text string
Twain, Mark
does exist in the ...