SQL Tutorial
SQL Database
SQL Table
SQL Select
SQL Order By
SQL Insert
SQL Update
SQL Delete
Difference
SQL Injection
SQL String Functions
Miscl
- SQL Formatter
- SQL group by
- SQL add/drop/update column operation
- SQL CAST Function
- SQL Comments
- SQL CONCAT Function
- CTE (Common Table Expression)SQL
- How to use distinct in SQL?
- Joining Three or More Tables in SQL
- What is Web SQL?
- How to create functions in SQL?
- How to run SQL Script?
- How to Delete Duplicate Rows in SQL?
- Nth Highest salary
- 12 Codd's Rules
- SQL EXCEPT
- Types of SQL JOIN
- Change datatype of column in SQL
- SQL Auto Increment
- SQL Like
- Commit and Rollback in SQL
- SQL Concatenate
- SQL get month from the date
- Savepoint in SQL
- SQL ORDER BY DATE
- TIME Datatype in SQL
- SQL BETWEEN
- CRUD Operations in SQL
- SQL INDEX
- Scalar Functions in SQL
- SET Operators in SQL
- Types of SQL Commands
- TCL Commands in SQL
- SQL Subquery
- SQL View
- Constraints in SQL
- Pattern Matching in SQL
- SQL Date Functions
- DDL Commands in SQL
- DML Commands in SQL
- SQL CASE
- SQL Inner Join
- SQL IN Operator
- Check Constraint in SQL
- SQL CLAUSES
- SQL LOGICAL OPERATORS
- Delete Column from Table
- Add Column in the Table
- Delete one row in SQL
- Change the Column Value
- How to Add Foreign Key in SQL
- Add a Primary Key
- Insert One or More rows
- How to Use LIKE in SQL
- Cursor in SQL
- Difference Between DROP and Truncate
- SQL Comparison Operators
- SQL COUNT WHERE
- SQL SELECT MIN
- SQL Stored Procedure
- SQL SELECT AVG
- SQL SELECT MAX
- SQL ADD COLUMN
- How to use Auto-Increment in SQL
- SQL Languages
- SQL Arithmetic Operators
- How to Use GROUP BY in SQL
- How to Use ORDER BY in SQL
- Trigger in SQL
- What is Race Condition
- SQL COUNT DISTINCT
PL/SQL Tutorial
Sql Interview Question
SQl Quiz
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:
- ASCII()
- CHAR_LENGTH()
- CHARACTER_LENGTH()
- CONCAT()
- CONCAT_WS()
- FIND_IN_SET()
- FORMAT()
- INSERT()
- INSTR()
- LCASE()
- LEFT()
- LOCATE()
- LOWER()
- LPAD()
- LTRIM()
- MID()
- POSITION()
- REPEAT()
- REPLACE()
- REVERSE()
- RIGHT()
- RPAD()
- RTRIM()
- SPACE()
- STRCMP()
- SUBSTR()
- SUBSTRING()
- SUBSTRING_INDEX()
- UCASE()
- 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:
(
1st_Column Data Type (character_size of 1st Column),
2nd_Column Data Type (character_size of the 2nd column ),
3rd_Column Data Type (character_size of the 3rd column),
...
);
The following CREATE statement creates the Faculty_Info table:
(
Faculty_ID INT NOT NULL PRIMARY KEY,
Faculty_First_Name VARCHAR (100),
Faculty_Last_Name VARCHAR (100),
Faculty_Dept_Id INT NOT NULL,
Faculty_AddressVarchar(120),
Faculty_City Varchar (80),
Faculty_Salary INT
);
The following INSERT queries insert the records of college Faculties in the Faculty_Info table:
INSERT INTO Faculty_Info (Faculty_ID, Faculty_First_Name, Faculty_Last_NameFaculty_Dept_Id, Faculty_Address, Faculty_City, Faculty_Salary) VALUES (1002, Bulbul, Roy, 4002, Nirman Vihar, Delhi, 38000 );
INSERT INTO Faculty_Info (Faculty_ID, Faculty_First_Name, Faculty_Last_NameFaculty_Dept_Id, Faculty_Address, Faculty_City, Faculty_Salary) VALUES (1004, Saurabh, Sharma, 4001, Sector 128, Mumbai, 45000);
INSERT INTO Faculty_Info (Faculty_ID, Faculty_First_Name, Faculty_Last_NameFaculty_Dept_Id, Faculty_Address, Faculty_City, Faculty_Salary) VALUES (1005, Shivani, Singhania, 4001, Vivek Vihar, Kolkata, 42000);
INSERT INTO Faculty_Info (Faculty_ID, Faculty_First_Name, Faculty_Last_NameFaculty_Dept_Id, Faculty_Address, Faculty_City, Faculty_Salary) VALUES (1006, Avinash, Sharma, 4002, Sarvodya Calony, Delhi, 28000);
INSERT INTO Faculty_Info (Faculty_ID, Faculty_First_Name, Faculty_Last_NameFaculty_Dept_Id, Faculty_Address, Faculty_City, Faculty_Salary)VALUES (1007, Shyam, Besas, 4003, Krishna Nagar, Lucknow, 35000);
The following SELECT statement displays the inserted records of the above Faculty_Info table:
Faculty_Id | Faculty_First_Name | Faculty_Last_Name | Faculty_Dept_Id | Faculty_Address | Faculty_City | Faculty_Salary |
---|---|---|---|---|---|---|
1001 | Arush | Sharma | 4001 | Aman Vihar | Delhi | 20000 |
1002 | Bulbul | Roy | 4002 | Nirman Vihar | Delhi | 38000 |
1004 | Saurabh | Roy | 4001 | Sector 128 | Mumbai | 45000 |
1005 | Shivani | Singhania | 4001 | Vivek Vihar | Kolkata | 42000 |
1006 | Avinash | Sharma | 4002 | Sarvodya Calony | Delhi | 28000 |
1007 | Shyam | Besas | 4003 | Krishna Nagar | Lucknow | 35000 |
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_City | ASCII_Code_of_column |
---|---|
Delhi | 68 |
Delhi | 68 |
Mumbai | 77 |
Kolkata | 75 |
Delhi | 68 |
Lucknow | 76 |
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_Name | Length_of_Last_Namecolumn |
---|---|
Sharma | 6 |
Roy | 3 |
Roy | 3 |
Singhania | 9 |
Sharma | 6 |
Besas | 5 |
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_Address | Length_of_Address_column |
---|---|
Aman Vihar | 10 |
Nirman Vihar | 12 |
Sector 128 | 10 |
Vivek Vihar | 11 |
Sarvodya Calony | 15 |
Krishna Nagar | 13 |
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_Name | Faculty_Last_Name | Append_First_LastName |
Arush | Sharma | Arush Sharma |
Bulbul | Roy | Bulbul Roy |
Saurabh | Roy | Saurabh Roy |
Shivani | Singhania | Shivani Singhania |
Avinash | Sharma | Avinash Sharma |
Shyam | Besas | Shyam 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_Name | Faculty_Last_Name | Append_First_LastName |
Arush | Sharma | Arush.Sharma |
Bulbul | Roy | Bulbul.Roy |
Saurabh | Roy | Saurabh.Roy |
Shivani | Singhania | Shivani.Singhania |
Avinash | Sharma | Avinash.Sharma |
Shyam | Besas | Shyam.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_Salary | Currency_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_City | Insert_Agra |
---|---|
Delhi | DeAgralhi |
Delhi | DeAgralhi |
Mumbai | MuAgrambai |
Kolkata | KoAgralkata |
Delhi | DeAgralhi |
Lucknow | LuAgracknow |
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_Address | LCASE_Address |
---|---|
Aman Vihar | 3 |
Nirman Vihar | 5 |
Sactor 128 | 2 |
Vivek Vihar | 10 |
Sarvodya Calony | 2 |
Krishna Nagar | 7 |
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_Address | LCASE_Address |
---|---|
Aman Vihar | aman vihar |
Nirman Vihar | nirman vihar |
Sector 128 | sector 128 |
Vivek Vihar | vivek vihar |
Sarvodya Calony | sarvodya colony |
Krishna Nagar | krishna 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_Address | LEFT_Address |
---|---|
Aman Vihar | Aman V |
Nirman Vihar | Nirman |
Sector 128 | Sector |
Vivek Vihar | Vivek |
Sarvodya Calony | Sarvod |
Krishna Nagar | Krishn |
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_Address | LOCATE_r_Address |
---|---|
Aman Vihar | 10 |
Nirman Vihar | 3 |
Sector 128 | 6 |
Vivek Vihar | 11 |
Sarvodya Calony | 3 |
Krishna Nagar | 2 |
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_Address | LOWER_Address |
---|---|
Aman Vihar | aman vihar |
Nirman Vihar | nirman vihar |
Sector 128 | sector 128 |
Vivek Vihar | vivek vihar |
Sarvodya Calony | sarvodya colony |
Krishna Nagar | krishna 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_City | LPAD_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_Name | LTRIM_LastName |
---|---|
Sharma | Sharma |
Roy | Roy |
Roy | Roy |
Singhania | Singhania |
Sharma | Sharma |
Besas | Besas |
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_Address | MID_Address |
---|---|
Aman Vihar | an Vihar |
Nirman Vihar | rman Vih |
Sector 128 | ctor 128 |
Vivek Vihar | vek Viha |
Sarvodya Calony | rvodya C |
Krishna Nagar | ishna 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_Address | POSITION_a_IN Address |
---|---|
Aman Vihar | 3 |
Nirman Vihar | 5 |
Sector 128 | 0 |
Vivek Vihar | 10 |
Sarvodya Calony | 2 |
Krishna Nagar | 7 |
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:SELECT Faculty_Address, REPEAT( Faculty_Address, 2 ) AS REPEAT_Address FROM Faculty_Info;
This SQL statement writes the address of each faulty two times in the Repeat_Address column.
Output:
Faculty_Address | REPEAT_Address |
---|---|
Aman Vihar | Aman ViharAman Vihar |
Nirman Vihar | Nirman ViharNirman Vihar |
Sector 128 | Sector 128Sector 128 |
Vivek Vihar | Vivek ViharVivek Vihar |
Sarvodya Calony | Sarvodya CalonySarvodya Calony |
Krishna Nagar | Krishna 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_Address | REPLACE_a_Address |
---|---|
Aman Vihar | Amn Vihr |
Nirman Vihar | Nirmn Vihr |
Sector 128 | Sector 128 |
Vivek Vihar | Vivek Vihr |
Sarvodya Calony | Srvody Clony |
Krishna Nagar | Krishn 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_Address | REVERSE_Address |
---|---|
Aman Vihar | rahiv nama |
Nirman Vihar | rahiv namrin |
Sector 128 | 821 rotces |
Vivek Vihar | rahiv keviv |
Sarvodya Calony | ynolac aydovras |
Krishna Nagar | ragan 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_Address | RIGHT_Address |
---|---|
Aman Vihar | n Vihar |
Nirman Vihar | n Vihar |
Sector 128 | tor 128 |
Vivek Vihar | k Vihar |
Sarvodya Calony | Calony |
Krishna Nagar | a 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_City | RPAD_City |
---|---|
Delhi | Delhi***** |
Delhi | Delhi***** |
Mumbai | Mumbai**** |
Kolkata | Kolkata*** |
Delhi | Delhi***** |
Lucknow | Lucknow*** |
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_Address | rtrimaddress |
---|---|
Aman Vihar | Aman Vihar |
Nirman Vihar | Nirman Vihar |
Sector 128 | Sector 128 |
Vivek Vihar | Vivek Vihar |
Sarvodya Calony | Sarvodya Calony |
Krishna Nagar | Krishna 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_Name | Faculty_Last_Name | STRCMP_Name |
---|---|---|
Arush | Sharma | -1 |
Bulbul | Roy | 1 |
Saurabh | Roy | 1 |
Shivani | Singhania | -1 |
Avinash | Sharma | 1 |
Shyam | Besas | 0 |
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