Hi,
For a varchar/text field we can use
field like 'Begin%' for values which start with Begin.
field like '%End' for values which end with End
How to achieve the same functionality with Full text match() against() ? Is it achievable ?
Hi,
For a varchar/text field we can use
field like 'Begin%' for values which start with Begin.
field like '%End' for values which end with End
How to achieve the same functionality with Full text match() against() ? Is it achievable ?
Not directly. Why?
You can of course use match() against() and LIKE in the same query if you want to combine their effects.