How to make a selection based on the ending value
Posted on August 30, 2008, Filled under PHP,
Bookmark it
An SQL command that selects the field’s values that end with a specific string.
SELECT * FROM `your_table_here` WHERE field_table REGEXP 'string_here$';
The symbol $ is telling MySQL to look at the ending of the value.
Do you wish to receive the latest updates as soon as they are posted? Get our RSS Feed or Subscribe to the Newsletter!
- August 30, 2008
- article by Gabriel C.
- Leave a reply!
Related Posts
How to make a selection based on the beginning valueat August 30, 2008
How to make an alphabetical searchat August 30, 2008
How to add a prefix to a field’s valueat August 30, 2008 with 1 comment
