SQL Replace Function – Swapping Words & Characters
Using the replace function in SQL can be useful to swap out words or characters with others. As an example,
Read moreUsing the replace function in SQL can be useful to swap out words or characters with others. As an example,
Read moreWe can write a SQL query using the substring function to select the exact pieces of information needed in a
Read moreIn order to convert character or string columns in SQL to UPPER or LOWER case we need to know the
Read moreTo find the string length (or width) in a field we can use the sql length function. The specific syntax
Read moreOften times, data is not cleansed appropriately when pulling data from files or other database tables. As a result, this
Read moreThere are a few ways (depending on the database) where we can convert a column data type. The main two
Read moreVery similar to the Lag() function that provides a previous record value is the Lead() function which provides the opposite
Read moreThere are several functions in SQL that are very useful such as the Lag() and Lead() functions. The lag function
Read more