|
-
May 31st, 1999, 07:19 PM
#1
Jet SQL syntax question
How do I do wildcards (for numbers or strings) in Jet SQL. My book says
WHERE [field] Like '*'
and
WHERE [field] Like #
but these didn't work. What's the correct syntax? Thank you.
-
May 9th, 2000, 02:32 PM
#2
Re: Jet SQL syntax question
I am wondering this same question. The SQL works fine in Access with the wild cards but not through ADO to the Jet engine.
I can get SQL to work if I am not using wildcard characters, but that greatly limits the flexibility of the program.
-
May 10th, 2000, 05:53 AM
#3
Re: Jet SQL syntax question
WHERE [field] Like '%A%';
If i help - rate.
-
May 10th, 2000, 10:20 AM
#4
Re: Jet SQL syntax question
Try "where field like '%'"
-
January 25th, 2001, 08:48 PM
#5
Solution
You will just have to supply double quotes, i.e.:
WHERE [field] Like "*"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|