8

MySQL Query - select the corresponding postal codes

 3 years ago
source link: https://www.codesd.com/item/mysql-query-select-the-corresponding-postal-codes.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

MySQL Query - select the corresponding postal codes

advertisements

I need to make a selection based on the first 2 characters of a field, so for example

SELECT * from table WHERE postcode LIKE 'rh%'

But this would select any record that contains those 2 characters at any point in the "postcode" field right? I am in need of a query that just selects the first 2 characters. Any pointerS?

Thanks


Your query is correct. It searches for postcodes starting with "rh".

In contrast, if you wanted to search for postcodes containing the string "rh" anywhere in the field, you would write:

SELECT * from table WHERE postcode LIKE '%rh%'

Edit:

To answer your comment, you can use either or both % and _ for relatively simple searches. As you have noticed already, % matches any number of characters whereas _ matches a single character.

So, in order to match postcodes starting with "RHx " (where x is any character) your query would be:

SELECT * from table WHERE postcode LIKE 'RH_ %'

(mind the space after _). For more complex search patterns, you need to read about regular expressions.

Further reading:

http://dev.mysql.com/doc/refman/5.1/en/pattern-matching.html

http://dev.mysql.com/doc/refman/5.1/en/regexp.html

Tags mysql

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK