string compare

2004-06-16 Thread Bob Lockie
Where is the syntax error in this? select name from users where name like '%' and strcmp( substr(name from 1 for 3), 'abc' )=0; Why should I use strcmp since MySQL automatically converts numbers to strings as necessary, and vice versa.? -- MySQL General Mailing List For list archives:

Re: string compare

2004-06-16 Thread gerald_clark
Bob Lockie wrote: Where is the syntax error in this? select name from users where name like '%' and strcmp( substr(name from 1 for 3), 'abc' )=0; substr(name,1,3) Check the manual. You don't include the 'from' and 'for'. Why should I use strcmp since MySQL automatically converts numbers to

Re: string compare

2004-06-16 Thread SGreen
: Fax to: 06/16/2004 04:09 Subject: string compare

string compare problem with single quote in string

2002-06-24 Thread testacct
I am comparing songnames from two tables to find a match. My query looks like this: $querymvideo = select movietable.id, movietable.songname from movietable where TRIM(movietable.songname) LIKE '__$foo' ; The above query works fine except when a songname has the single quote symbol: ' or maybe