|
-
Sep 4th, 2002, 04:06 AM
#1
Thread Starter
Lively Member
sql :like
hi, all
Can anyone tell me what is wrong with this:
strQry = "select * from ticket where " + _
"[record date] <= #" & date1 & "#" + _
"and [Flight NO] like ' ' " & text1 & " '* ' "
Thank you in advance.
I wish 49.9999999% of my dreams have come true 
-
Sep 4th, 2002, 04:09 AM
#2
Member
try this:
strQry = "select * from ticket where " + _
"[record date] <= #" & date1 & "#" + _
"and [Flight NO] like '" & text1 & "%'"
-
Sep 4th, 2002, 04:14 AM
#3
Thread Starter
Lively Member
Thank you ,digisenze.
It worked!
I wish 49.9999999% of my dreams have come true 
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
|