SQL String Functions

In this article, you will learn about the various string functions of Structured Query Language in detail with examples.

What are String Functions in SQL?

SQL String functions are the predefined functions that allow the database users for string manipulation. These functions only accept, process, and give results of the string data type.

Following are the most important string functions in Structured Query Language:

  1. ASCII()
  2. CHAR_LENGTH()
  3. CHARACTER_LENGTH()
  4. CONCAT()
  5. CONCAT_WS()
  6. FIND_IN_SET()
  7. FORMAT()
  8. INSERT()
  9. INSTR()
  10. LCASE()
  11. LEFT()
  12. LOCATE()
  13. LOWER()
  14. LPAD()
  15. LTRIM()
  16. MID()
  17. POSITION()
  18. REPEAT()
  19. REPLACE()
  20. REVERSE()
  21. RIGHT()
  22. RPAD()
  23. RTRIM()
  24. SPACE()
  25. STRCMP()
  26. SUBSTR()
  27. SUBSTRING()
  28. SUBSTRING_INDEX()
  29. UCASE()
  30. UPPER()

Let's discuss each string function in brief with the SQL table.

Now, we create a new table in SQL, which helps to understand each string function. The syntax for creating a new table in the SQL database is as follows:

The following CREATE statement creates the Faculty_Info table:

The following INSERT queries insert the records of college Faculties in the Faculty_Info table:

The following SELECT statement displays the inserted records of the above Faculty_Info table:


Faculty_IdFaculty_First_NameFaculty_Last_NameFaculty_Dept_IdFaculty_AddressFaculty_CityFaculty_Salary
1001ArushSharma4001Aman ViharDelhi20000
1002BulbulRoy4002Nirman ViharDelhi38000
1004SaurabhRoy4001Sector 128Mumbai45000
1005ShivaniSinghania4001Vivek ViharKolkata42000
1006AvinashSharma4002Sarvodya CalonyDelhi28000
1007ShyamBesas4003Krishna NagarLucknow35000

ASCII String Function

This function in SQL returns the ASCII value of the character in the output. It gives the ASCII value of the left-most character of the string.

Syntax of ASCII String Function:

Syntax1: This syntax uses ASCII with the table column:

Syntax2: This syntax uses ASCII with the string:

Syntax3: This syntax uses ASCII with the character:

Example of ASCII String function:

The following SELECT query uses ASCII code with the Faculty_City column of the above Faculty_Info table.

This query shows the ASCII code of the first character of all cities of the Faculty_City column.

Faculty_CityASCII_Code_of_column
Delhi68
Delhi68
Mumbai77
Kolkata75
Delhi68
Lucknow76

CHAR_LENGTH String Function

This string function returns the length of the specified word. It shows the number of characters from the word.

Syntax of CHAR_LENGTH String Function:

Syntax1: This syntax uses CHAR_LENGTH() with the table column:

Syntax2: This syntax uses CHAR_LENGTH() with the word:

Examples of CHAR_LENGTH String function:

Example 1: This example shows the number of characters of the JavaTpoint word:

Output:

10    

Example 2: This example uses CHAR_LENGTH() with the Faculty_Last_Name column of the above Faculty_Info table.

This query shows the total number of characters of the last name of each faculty.

Output:

Faculty_Last_NameLength_of_Last_Namecolumn
Sharma6
Roy3
Roy3
Singhania9
Sharma6
Besas5

CHARACTER_LENGTH String Function

This string function returns the length of the given string. It shows the number of all characters and spaces from the sentence.

Syntax of CHARACTER_LENGTH String Function:

Syntax1: This syntax uses CHARACTER_LENGTH() with the table column:

Syntax2: This syntax uses CHARACTER_LENGTH() with the string:

Examples of CHARACTER_LENGTH String function:

Example 1: The following SELECT query shows the total number of characters and spaces of the specified string:

Output:

28  

Example 2: The following SELECT query uses CHARACTER_LENGTH() with the Faculty_Addresss column of the above Faculty_Info table.

This SQL statement shows the total number of characters and spaces of the address of each faculty.

Output:

Faculty_AddressLength_of_Address_column
Aman Vihar10
Nirman Vihar12
Sector 12810
Vivek Vihar11
Sarvodya Calony15
Krishna Nagar13

CONCAT String Function

This string function concatenates two strings or words and forms a new string in the result.

Syntax of CONCAT String Function:

Syntax1: This syntax uses CONCAT() with table columns:

Syntax2: This syntax uses CONCAT() with multiple strings:

Examples of CONCAT string function:

Example 1: The following SELECT query appends the multiple strings into a single string:

Output:

JavaTpoint is a good company  

Example 2: The following SELECT query uses CONCAT() with the Faculty_First_Name and Faculty_Last_Name columns of above Faculty_Info table:

This SQL statement merges the first name and last name of each faculty as shown in the below table:

Output:

Faculty_First_NameFaculty_Last_NameAppend_First_LastName
ArushSharmaArush Sharma
BulbulRoyBulbul Roy
SaurabhRoySaurabh Roy
ShivaniSinghaniaShivani Singhania
AvinashSharmaAvinash Sharma
ShyamBesasShyam Besas

CONCAT_WS String Function

This string function concatenates multiple strings or words with the help of concatenating symbol. This function uses another parameter that denotes the concatenate symbol.

Syntax of CONCAT_WS String Function:

Syntax1: This syntax uses CONCAT_WS() with table columns:

Syntax2: This syntax uses CONCAT_WS() with multiple strings:

Examples of CONCAT_WS String function:

Example 1: The following SELECT query appends the multiple strings using the plus (+) symbol:

Output:

JavaTpoint+is+a+good+company  

Example 2: The following SELECT query uses CONCAT_WS() with the Faculty_First_Name and Faculty_Last_Name columns of the above Faculty_Info table:

This SQL statement merges the first name and last name of each faculty by the dot symbol.

Output:

Faculty_First_NameFaculty_Last_NameAppend_First_LastName
ArushSharmaArush.Sharma
BulbulRoyBulbul.Roy
SaurabhRoySaurabh.Roy
ShivaniSinghaniaShivani.Singhania
AvinashSharmaAvinash.Sharma
ShyamBesasShyam.Besas

FIND_IN_SET String Function

This string function allows you to find the position of the searched_string in the set of strings.

Syntax of FIND_IN_SET String Function:

Examples of FIND_IN_SET String function:

Example 1: The following SELECT query searches 'a' character from the given set of characters:

Output:

3 

Example2: The following SELECT query searches 'Delhi' string from the given set of strings:

Output:

4

FORMAT String Function

This String function allows you to display the given string in the specified format.

Syntax of FORMAT String Function:

Syntax1: This syntax uses FORMAT() with table column:

Syntax2: This syntax uses FORMAT() with the string:

Examples of FORMAT String function:

Example 1: The following SELECT query displays the number in the percentage format:

Output:

95.80%   

Example 2: The following SELECT query uses FORMAT() with the Faculty_Salary column of the above Faculty_Info table:

This SQL statement displays the salary of each faculty in the currency format.

Output:

Faculty_SalaryCurrency_Salary
20000$20000.00
38000$38000.00
45000$45000.00
42000$42000.00
28000$28000.00
35000$35000.00

INSERT String Function

This string function allows the database users to insert the sub-string in the original string at the given index position.

Syntax of INSERT String Function:

Syntax1: This syntax uses INSERT() with the column of the SQL:

Syntax2: This syntax uses INSERT() with the string:

Examples of INSERT String function:

Example 1: The following SELECT query inserts the 'Tpoint' string at the fifth position in the 'JavaExcel' string:

Output:

JavaTpointExcel   

Example 2: The following SELECT query uses INSERT() with the Faculty_City column of the above Faculty_Info table:

This SQL statement inserts the Agra string at the third position in the city of each faculty.

Output:

Faculty_CityInsert_Agra
DelhiDeAgralhi
DelhiDeAgralhi
MumbaiMuAgrambai
KolkataKoAgralkata
DelhiDeAgralhi
LucknowLuAgracknow

INSTR String Function

This string function returns the index value of the first occurrence of the given character in the string.

Syntax of INSTR String Function:

Syntax1: This syntax uses INSTR() with the column of the SQL:

Syntax2: This syntax uses INSTR() with the string:

Examples of INSTR String function:

Example 1: The following SELECT query shows the index value of the 'T' character in the JavaTpoint string

Output:

5  

Example 2: The following SELECT query uses INSTR() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement converts the cities of all faculties into lower case letters.

Output:

Faculty_AddressLCASE_Address
Aman Vihar3
Nirman Vihar5
Sactor 1282
Vivek Vihar10
Sarvodya Calony2
Krishna Nagar7

LCASE String Function

This string function allows users to convert the specified string into lower case letters.

Syntax of LCASE String Function:

Syntax1: This syntax uses LCASE() with the column of the SQL table:

Syntax2: This syntax uses LCASE() with the string:

Examples of LCASE String function:

Example 1: The following SELECT query converts the upper case letters of the given string into the lower case letters.

Output:

the capital of india is new delhi  

Example 2: The following SELECT query uses LCASE() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement converts the cities of all faculties into lower case letters.

Output:

Faculty_AddressLCASE_Address
Aman Viharaman vihar
Nirman Viharnirman vihar
Sector 128sector 128
Vivek Viharvivek vihar
Sarvodya Calonysarvodya colony
Krishna Nagarkrishna nagar

LEFT String Function

This string function shows the leftmost characters from the given string. It reads the characters to the given index position.

Syntax of LEFT String Function:

Syntax1: This syntax uses LEFT() with the column of the SQL table:

Syntax2: This syntax uses LEFT() with the string:

Examples of LEFT String function:

Example 1: The following SELECT query shows the 11 leftmost characters from the given string:

Output:

The CAPITAL  

Example 2: The following SELECT query uses LEFT() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement shows the 6 leftmost characters from the address of all faculties

Output:

Faculty_AddressLEFT_Address
Aman ViharAman V
Nirman ViharNirman
Sector 128Sector
Vivek ViharVivek
Sarvodya CalonySarvod
Krishna NagarKrishn

LOCATE String Function

This string function shows the index value of the first occurrence of the word in the given string.

Syntax of LOCATE String Function:

Syntax1: This syntax uses LOCATE() with the column of the SQL table:

Syntax2: This syntax uses LOCATE() with the string:

Examples of LOCATE String function:

Example 1: The following SELECT query shows the index value of the INDIA word in the given sentence:

Output:

16   

Example 2: The following SELECT query uses LOCATE() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement shows the index value of 'r' in the address of each faculty.

Output:

Faculty_AddressLOCATE_r_Address
Aman Vihar10
Nirman Vihar3
Sector 1286
Vivek Vihar11
Sarvodya Calony3
Krishna Nagar2

LOWER String Function

This string function allows users to convert the specified string into lower case letters. This function is also the same as the LCASE() string function.

Syntax of LOWER String Function:

Syntax1: This syntax uses LOWER() with the column of the SQL table:

Syntax2: This syntax uses LOWER() with the string:

Examples of LOWER String function:

Example 1: The following SELECT query converts the upper case letters of the given string into the lower case letters.

Output:

new delhi is the capital of india  

Example 2: The following SELECT query uses LOWER() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement converts the cities of all faculties into lower case letters.

Output:

Faculty_AddressLOWER_Address
Aman Viharaman vihar
Nirman Viharnirman vihar
Sector 128sector 128
Vivek Viharvivek vihar
Sarvodya Calonysarvodya colony
Krishna Nagarkrishna nagar

LPAD String Function

This string function adds the given symbol to the left of the given string.

Syntax of LPAD String Function:

Syntax1: This syntax uses LPAD() with the column of the SQL table:

Syntax2: This syntax uses LPAD() with the string:

Examples of LPAD String function:

Example 1: The following SELECT query adds the # symbol three times to the left of the NEW string:

Output:

###NEW  

Example 2: The following SELECT query uses LPAD() with the Faculty_City column of the above Faculty_Info table:

This SQL statement adds the * (asterisk) symbol five times to the left of the city of all faculties:

Output:

Faculty_CityLPAD_City
Delhi*****Delhi
Delhi*****Delhi
Mumbai****Mumbai
Kolkata***Kolkata
Delhi*****Delhi
Lucknow***Lucknow

LTRIM String Function

This string function cuts the given character or string from the left of the given original string. It also removes the space from the left of the specified string.

Syntax of LTRIM String Function:

Syntax1: This syntax uses LTRIM() with the column of the SQL table:

Syntax2: This syntax uses LTRIM() with the string:

Examples of LTRIM String function:

Example 1: The following SELECT query trims the NEW DELHI words from the specified string:

Output:

IS THE CAPITAL OF INDIA   

Example 2: The following SELECT query trims the space from the specified string:

Output:

'JAVATPOINT           '    

Example 3: The following SELECT query trims the given character from the left of specified string:

Output:

98221545   

Example 4: The following SELECT query uses LTRIM() with the Faculty_Last_Name column of above Faculty_Info table:

This SQL statement trims the space from the left of the last name of all faculties:

Output:

Faculty_Last_NameLTRIM_LastName
SharmaSharma
RoyRoy
RoyRoy
SinghaniaSinghania
SharmaSharma
BesasBesas

MID String Function

This string function extracts the sub-string from the given position of the original string.

Syntax of MID String Function:

Syntax1: This syntax uses MID() with the column of the SQL table:

Syntax2: This syntax uses MID() with the string:

Examples of MID String function:

Example 1: The following SELECT query shows the character from the 5th to the 10th position of the string.

Output:

DELHI IS T   

Example 2: The following SELECT query uses MID() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement shows the character from the 3rd position till the 8th position of the address.

Output:

Faculty_AddressMID_Address
Aman Viharan Vihar
Nirman Viharrman Vih
Sector 128ctor 128
Vivek Viharvek Viha
Sarvodya Calonyrvodya C
Krishna Nagarishna Na

POSITION String Function

This string function finds the position of the first occurrence of the given string in the main string.

Syntax of POSITION String Function:

Syntax1: This syntax uses POSITION() with the column of the SQL table:

Syntax2: This syntax uses POSITION() with the string:

Examples of POSITION String function:

Example 1: The following SELECT query finds the position of the IT Company string in the original string:

Output:

25   

Example 2: The following SELECT query finds the position of the 'H' string in the original string:

Output:

1    

Example 3: The following SELECT query uses POSITION() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement finds the position of character 'a' in the address of each faculty:

Output:

Faculty_AddressPOSITION_a_IN Address
Aman Vihar3
Nirman Vihar5
Sector 1280
Vivek Vihar10
Sarvodya Calony2
Krishna Nagar7

REPEAT String Function

This string function writes the given string or character till the given number of times.

Syntax of REPEAT String Function:

Syntax1: This syntax uses REPEAT() with the column of the SQL table:

Syntax2: This syntax uses REPEAT() with the string:

Examples of REPEAT String function:

Example 1: The following SELECT query writes the given string three times in the output.

Output:

javatpoint is an indian IT companyjavatpoint is an indian IT companyjavatpoint is an indian IT company   

Example 2: The following SELECT query writes the given character five times in the output.

Output:

H H H H H  

Example 3: The following SELECT query uses REPEAT() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement writes the address of each faulty two times in the Repeat_Address column.

Output:

Faculty_AddressREPEAT_Address
Aman ViharAman ViharAman Vihar
Nirman ViharNirman ViharNirman Vihar
Sector 128Sector 128Sector 128
Vivek ViharVivek ViharVivek Vihar
Sarvodya CalonySarvodya CalonySarvodya Calony
Krishna NagarKrishna NagarKrishna Nagar

REPLACE String Function

This string function cuts the given string by removing the given sub-string.

Syntax of REPLACE String Function:

Syntax1: This syntax uses REPLACE() with the column of the SQL table:

Syntax2: This syntax uses REPLACE() with the string:

Examples of REPLACE String function:

Example 1: The following SELECT query removes the 'javatpoint' word from the original string:

Output:

Indian IT company   

Example 2: The following SELECT query removes the given character H from the string:

Output:

IJKJKL    

Example 3: The following SELECT query uses REPLACE() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement removes the character a from the address of each faulty:

Output:

Faculty_AddressREPLACE_a_Address
Aman ViharAmn Vihr
Nirman ViharNirmn Vihr
Sector 128Sector 128
Vivek ViharVivek Vihr
Sarvodya CalonySrvody Clony
Krishna NagarKrishn Ngr

REVERSE String Function

This string function of Structured query Language reverses all the characters of the string.

Syntax of REVERSE String Function:

Syntax1: This syntax uses REVERSE() with the column of the SQL table:

Syntax2: This syntax uses REVERSE() with the string:

Examples of REVERSE String function:

Example 1: The following SELECT query reverses the characters of the JavaTpoint string:

Output:

tnioptavaj    

Example 3: The following SELECT query uses REVERSE() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement reverses the address of each faculty:

Output:

Faculty_AddressREVERSE_Address
Aman Viharrahiv nama
Nirman Viharrahiv namrin
Sector 128821 rotces
Vivek Viharrahiv keviv
Sarvodya Calonyynolac aydovras
Krishna Nagarragan anhsirk

RIGHT String Function

This string function shows the right-most characters from the given string. It reads the characters from the right side to the given index position.

Syntax of RIGHT String Function:

Syntax1: This syntax uses RIGHT() with the column of the SQL table:

Syntax2: This syntax uses RIGHT() with the string:

Examples of RIGHT String function:

Example 1: The following SELECT query shows the 11 right-most characters from the given string:

Output:

s NEW DELHI   

Example 2: The following SELECT query uses RIGHT() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement shows the 7 right-most characters from the address of each faculty.

Output:

Faculty_AddressRIGHT_Address
Aman Viharn Vihar
Nirman Viharn Vihar
Sector 128tor 128
Vivek Vihark Vihar
Sarvodya CalonyCalony
Krishna Nagara Nagar

RPAD String Function

This string function adds the given symbol to the right of the given string.

Syntax of RPAD String Function:

Syntax1: This syntax uses RPAD() with the column of the SQL table:

Syntax2: This syntax uses RPAD() with the string:

Examples of RPAD String function:

Example 1: The following SELECT query adds the # symbol three times to the right of the NEW string:

Output:

NEW###   

Example 2: The following SELECT query uses RPAD() with the Faculty_City column of the above Faculty_Info table:

This SQL statement adds the * (asterisk) symbol to the right of the city of each faculty.

Output:

Faculty_CityRPAD_City
DelhiDelhi*****
DelhiDelhi*****
MumbaiMumbai****
KolkataKolkata***
DelhiDelhi*****
LucknowLucknow***

RTRIM String Function

This string function cuts the given character or string from the right of the given original string. It also removes the space from the right of the specified string.

Syntax of RTRIM String Function:

Syntax1: This syntax uses RTRIM() with the column of the SQL table:

Syntax2: This syntax uses RTRIM() with the string:

Examples of RTRIM String function:

Example 1: The following SELECT query trims the NEW DELHI words from the specified string:

Output:

NEW DELHI IS THE   

Example 2: The following SELECT query trims the space from the right of the specified string:

Output:

'              JAVATPOINT'   

Example 3: The following SELECT query trims the given character from the right of the specified string:

Output:

98221545    

Example 4: The following SELECT query uses RTRIM() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement trims the space from the right of the address of each faculty:

Output:

Faculty_Addressrtrimaddress
Aman ViharAman Vihar
Nirman ViharNirman Vihar
Sector 128Sector 128
Vivek ViharVivek Vihar
Sarvodya CalonySarvodya Calony
Krishna NagarKrishna Nagar

SPACE String Function

This string function adds the specified number of spaces.

Syntax of SPACE String Function:

Example of SPACE String function:

The following SELECT query adds the 11 spaces:

Output:

___________   

STRCMP String Function

This string function compares the two specified strings with each other. This function returns 0 if both strings in SQL are similar, returns -1 if the first string is smaller than the second string, and returns 1 if the first string is bigger than the second string.

Syntax of STRCMP String Function:

Syntax1: This syntax uses STRCMP() with the columns of the SQL table:

Syntax2: This syntax uses STRCMP() with the two strings:

Examples of STRCMP String function:

Example 1: The following SELECT query compares the 'INDIA' string with the 'JavaTpoint' string.

Output:

-1   

Example 2: The following SELECT query compares the 'INDIA' string with the 'Point' string.

Output:

0   

Example 3: The following SELECT query uses STRCMP() with the Faculty_first_Name and Faculty_Last_Name columns of the above Faculty_Info table:

This SQL statement compares the first name and last name of each faculty.

Output:

Faculty_First_NameFaculty_Last_NameSTRCMP_Name
ArushSharma-1
BulbulRoy1
SaurabhRoy1
ShivaniSinghania-1
AvinashSharma1
ShyamBesas0

SUBSTR String Function

This string function extracts the sub-string from the given position of the original string.

Syntax of SUBSTR String Function:

Syntax1: This syntax uses SUBSTR() with the column of the SQL table:

Syntax2: This syntax uses SUBSTR() with the string:

Examples of SUBSTR String function:

Example 1: The following SELECT query shows the character from the 5th to the 10th position of the string.

Output:

DELHI IS T  

Example 2: The following SELECT query uses SUBSTR() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement shows the substring from the 3rd position to the 8th position of the address.

Output:

Faculty_AddressSUBSTR_Address
Aman Viharan Vihar
Nirman Viharrman Vih
Sector 128ctor 128
Vivek Viharvek Viha
Sarvodya Calonyrvodya C
Krishna Nagarishna Na

SUBSTRING String Function

This string function shows the character of the given index value in the original string.

Syntax of SUBSTRING String Function:

Syntax1: This syntax uses SUBSTRING() with the column of the SQL table:

Syntax2: This syntax uses SUBSTRING() with the string:

Examples of SUBSTRING String function:

Example 1: The following SELECT query shows the character of the fifth position from the left side.

Output:

D    

Example 2: The following SELECT query uses SUBSTRING() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement shows the character of the 3rd position from the left side of the address of each faculty.

Output:

Faculty_AddressSUBSTRING_Address
Aman Vihara
Nirman Viharr
Sector 128c
Vivek Viharv
Sarvodya Calonyr
Krishna Nagari

SUBSTRING_INDEX String Function

This string function shows the substring before the given symbol in the original string.

Syntax of SUBSTRING_INDEX String Function:

This syntax uses SUBSTRING_INDEX() with the string:

Example of SUBSTRING_INDEX String function:

The following SELECT query shows the substring before the @ symbol:

Output:

NEW DELHI  

UCASE String Function

This string function allows users to convert the specified string into upper case letters or capital letters.

Syntax of UCASE String Function:

Syntax1: This syntax uses UCASE() with the column of the SQL table:

Syntax2: This syntax uses UCASE() with the string:

Examples of UCASE String function:

Example 1: The following SELECT query converts the lower case letters of a given string into the upper case letters.

Output:

THE CAPITAL OF INDIA IS NEW DELHI'  

Example 1: The following SELECT query converts the given small letter into a capital letter:

Output:

E   

Example 2: The following SELECT query uses UCASE() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement converts the cities of all faculties into capital letters.

Output:

Faculty_AddressUCASE_Address
Aman ViharAMAN VIHAR
Nirman ViharNIRMAN VIHAR
Sector 128SECTOR 128
Vivek ViharVIVEK VIHAR
Sarvodya CalonySARVODYA CALONY
Krishna NagarKRISHNA NAGAR

UPPER String Function

This string function allows users to convert the specified string into the UPPER case letters. This function is also the same as the UCASE() string function.

Syntax of UPPER String Function:

Syntax1: This syntax uses UPPER() with the column of the SQL table:

Syntax2: This syntax uses UPPER() with the string:

Examples of UPPER String function:

Example 1: The following SELECT query converts the LOWER caseletters of the given string into the UPPER case letters.

Output:

NEW DELHI IS THE CAPITAL OF INDIA   

Example 2: The following SELECT query uses UPPER() with the Faculty_Address column of the above Faculty_Info table:

This SQL statement converts the cities of all faculties into the UPPER case letters.

Output:

Faculty_AddressUPPER_Address
Aman ViharAMAN VIHAR
Nirman ViharNIRMAN VIHAR
Sector 128SECTOR 128
Vivek ViharVIVEK VIHAR
Sarvodya CalonySARVODYA CALONY
Krishna NagarKRISHNA NAGAR