Jun 24, 2002 #1 demoman Programmer Oct 24, 2001 242 US I cannot get the following to work... Select * from <table> where <column> like 'a*' Can someone tell me what the functional equivalency is? I am using the Timberline pervasive driver Thanks
I cannot get the following to work... Select * from <table> where <column> like 'a*' Can someone tell me what the functional equivalency is? I am using the Timberline pervasive driver Thanks
Jun 24, 2002 1 #2 Linda84 IS-IT--Management Jan 14, 2002 62 US If you're using Pervasive.SQL 2000i, try: Select * from <table> where <column> like 'a%' For a LIKE operator, use % for any number of characters, and _ for single characters. Linda Pervasive Software Support Upvote 0 Downvote
If you're using Pervasive.SQL 2000i, try: Select * from <table> where <column> like 'a%' For a LIKE operator, use % for any number of characters, and _ for single characters. Linda Pervasive Software Support
Jun 25, 2002 Thread starter #3 demoman Programmer Oct 24, 2001 242 US Yes, this worked. Thanks, Linda! Upvote 0 Downvote