filmov
tv
SQL String Functions Tutorial (LEFT, RIGHT, POSITION, CONCAT, LOWER, REPLACE)
Показать описание
A step-by-step video tutorial on the most popular SQL string functions like CHAR_LENGTH, LEFT/RIGHT, CONCAT, POSITION, UPPER/LOWER, and REPLACE!
Queries:
1) Get the number of characters in a string: SELECT CHAR_LENGTH(column1) FROM table
2) Get a certain number of characters starting from the left: SELECT LEFT(column1, 5) FROM table
3) Get a certain number of characters starting from the right: SELECT RIGHT(column1, 5) FROM table
4) Get the position of a character in a string: SELECT POSITION(' ' IN column1) FROM table
5) Combine strings together: SELECT CONCAT(column1,' ',column2) FROM table
6) Make all the characters in a string lowercase: SELECT LOWER(column1) FROM table
7) Make all characters in a string uppercase: SELECT UPPER(column1) FROM table
8) Replace characters in a string: SELECT REPLACE(column1,' ','') FROM table
Support the Channel:
Queries:
1) Get the number of characters in a string: SELECT CHAR_LENGTH(column1) FROM table
2) Get a certain number of characters starting from the left: SELECT LEFT(column1, 5) FROM table
3) Get a certain number of characters starting from the right: SELECT RIGHT(column1, 5) FROM table
4) Get the position of a character in a string: SELECT POSITION(' ' IN column1) FROM table
5) Combine strings together: SELECT CONCAT(column1,' ',column2) FROM table
6) Make all the characters in a string lowercase: SELECT LOWER(column1) FROM table
7) Make all characters in a string uppercase: SELECT UPPER(column1) FROM table
8) Replace characters in a string: SELECT REPLACE(column1,' ','') FROM table
Support the Channel:
SQL String Functions Tutorial (LEFT, RIGHT, POSITION, CONCAT, LOWER, REPLACE)
Advanced SQL Tutorial | String Functions + Use Cases
23. LEFT () Function - SQL String Functions
SQL Tutorial - 41: SUBSTR(), RIGHT() & LEFT() Functions
LEFT, RIGHT, CHARINDEX and SUBSTRING functions in sql server Part 23
25-String Functions in SQL | Types of SQL Functions | Examples | SUBSTR(),CONCAT(),UPPER(),REVERSE()
Cleaning Strings (SQL) - LEFT, RIGHT, TRIM, UPPER, LOWER, CONCAT
SQL String Functions - Manipulate String Values - SQL Tutorial #28
Databricks Certified Data Engineer Associate Exam Questions Dumps 2024 (48 Real Questions)
31. SUBSTRING () Function - SQL String Functions
25. LEN() Function - SQL String Functions
SUBSTR IN SQL WITH EXAMPLES | MASTER IN SQL
Replace, Stuff, Substring and Translate | SQL String Functions | SQL Fundamentals
SQL Server-10 (Complete String Functions in SQL)
LEFT, RIGHT, SUBSTRING and CHARINDEX functions in Sql Server
SQL Tutorial #28 - String Functions in SQL Explained with Examples
5 SQL String Functions You SHOULD Know
62 How to use Substring replace charindex functions in SQL Server
99% of SQL Users Don't Know This AMAZING Function
LTRIM and RTRIM Functions in SQL || Lesson 58 || DBMS || Learning Monkey ||
CAST Function (SQL) - Converting Data Types
How to get FIRST CHARACTER of STRING in SQL
String Functions in SQL | Functions in SQL | SQL Tutorial in Hindi 7
SQL Tutorials - 8.System Functions_1 - LEN / LEFT / RIGHT / SUBSTRING / CHARINDEX
Комментарии