Click here to Skip to main content
15,886,963 members
Home / Discussions / C#
   

C#

 
QuestionHow to redirect the weburl to particular country when user types in Browser. Pin
pradeep yajamanam21-Jan-16 1:52
pradeep yajamanam21-Jan-16 1:52 
AnswerRe: How to redirect the weburl to particular country when user types in Browser. Pin
Dave Kreskowiak21-Jan-16 4:54
mveDave Kreskowiak21-Jan-16 4:54 
AnswerRe: How to redirect the weburl to particular country when user types in Browser. Pin
Richard MacCutchan21-Jan-16 5:03
mveRichard MacCutchan21-Jan-16 5:03 
AnswerRe: How to redirect the weburl to particular country when user types in Browser. Pin
Gerry Schmitz21-Jan-16 8:34
mveGerry Schmitz21-Jan-16 8:34 
Questiongetting country from phone number Pin
Asrour20-Jan-16 10:46
Asrour20-Jan-16 10:46 
AnswerRe: getting country from phone number Pin
Richard Andrew x6420-Jan-16 11:32
professionalRichard Andrew x6420-Jan-16 11:32 
GeneralRe: getting country from phone number Pin
Asrour20-Jan-16 11:40
Asrour20-Jan-16 11:40 
GeneralRe: getting country from phone number Pin
Richard Deeming21-Jan-16 2:20
mveRichard Deeming21-Jan-16 2:20 
So something like this:
SQL
SELECT TOP 1
    Country
FROM
    CountryCodes
WHERE
    @PhoneNumber Like Code + '%'
ORDER BY
    Len(Code) DESC
;

That will give you the country for a single phone number passed in as a parameter. If there are multiple matching country codes, it will return the country for the longest matching code.

If you want the country for multiple phone numbers, try:
SQL
WITH cteCodes As
(
    SELECT
        CountryCodes.Country,
        PhoneNumbers.PhoneNumber,
        ROW_NUMBER() OVER (PARTITION BY PhoneNumbers.PhoneNumber ORDER BY Len(CountryCodes.Code) DESC) As RN
    FROM
        CountryCodes
        INNER JOIN PhoneNumbers
        ON PhoneNumbers.PhoneNumber Like CountryCodes.Code + '%'
)
SELECT 
    Country,
    PhoneNumber
FROM 
    cteCodes
WHERE
    RN = 1
;




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: getting country from phone number Pin
PIEBALDconsult20-Jan-16 11:59
mvePIEBALDconsult20-Jan-16 11:59 
GeneralRe: getting country from phone number Pin
Asrour20-Jan-16 12:01
Asrour20-Jan-16 12:01 
SuggestionRe: getting country from phone number Pin
Sascha Lefèvre20-Jan-16 12:08
professionalSascha Lefèvre20-Jan-16 12:08 
GeneralRe: getting country from phone number Pin
Asrour20-Jan-16 12:21
Asrour20-Jan-16 12:21 
GeneralRe: getting country from phone number Pin
Sascha Lefèvre20-Jan-16 12:26
professionalSascha Lefèvre20-Jan-16 12:26 
GeneralRe: getting country from phone number Pin
Asrour20-Jan-16 12:31
Asrour20-Jan-16 12:31 
GeneralRe: getting country from phone number Pin
Sascha Lefèvre20-Jan-16 12:37
professionalSascha Lefèvre20-Jan-16 12:37 
AnswerRe: getting country from phone number Pin
jschell22-Jan-16 13:48
jschell22-Jan-16 13:48 
QuestionString Formatting / Interpolation --- Opinions Pin
Sascha Lefèvre20-Jan-16 3:59
professionalSascha Lefèvre20-Jan-16 3:59 
AnswerRe: String Formatting / Interpolation --- Opinions Pin
Pete O'Hanlon20-Jan-16 4:19
mvePete O'Hanlon20-Jan-16 4:19 
GeneralRe: String Formatting / Interpolation --- Opinions Pin
Sascha Lefèvre20-Jan-16 4:34
professionalSascha Lefèvre20-Jan-16 4:34 
GeneralRe: String Formatting / Interpolation --- Opinions Pin
Pete O'Hanlon20-Jan-16 4:46
mvePete O'Hanlon20-Jan-16 4:46 
GeneralRe: String Formatting / Interpolation --- Opinions Pin
Sascha Lefèvre20-Jan-16 5:44
professionalSascha Lefèvre20-Jan-16 5:44 
GeneralRe: String Formatting / Interpolation --- Opinions Pin
Pete O'Hanlon20-Jan-16 6:53
mvePete O'Hanlon20-Jan-16 6:53 
GeneralRe: String Formatting / Interpolation --- Opinions Pin
Sascha Lefèvre20-Jan-16 7:03
professionalSascha Lefèvre20-Jan-16 7:03 
AnswerRe: String Formatting / Interpolation --- Opinions Pin
phil.o20-Jan-16 4:26
professionalphil.o20-Jan-16 4:26 
GeneralRe: String Formatting / Interpolation --- Opinions Pin
Sascha Lefèvre20-Jan-16 4:36
professionalSascha Lefèvre20-Jan-16 4:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.