Hello all,
I have two identical queries (see below) and for some reason the first one returns data while the second does not (empty result set). Note, the database does contain data to return in both cases.
Can someone shed some light on it? Thanks a lot!
1) SELECT field1, field2, field3 FROM mytb WHERE match(field1,field2) against('mysql' IN BOOLEAN MODE)
2) SELECT field1, field2, field3 FROM mytb WHERE match(field1,field2) against('php' IN BOOLEAN MODE)