SQL Substring – Selecting Specific Field Data
We can write a SQL query using the substring function to select the exact pieces of information needed in a
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 moreWe can use a combination of the MAX and MIN functions in conjunction with the SQL length function to get
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 moreWe can combine multiple columns together into one in SQL using concatenation. Many databases have their own versions of combining
Read moreWe can write standard insert queries using hard-coded values. Similarly, we can write inserts and instead use a SELECT query
Read moreWe are able to insert records into a database table using a SQL INSERT statement. Alternatively, we can utilize the
Read moreWe can manipulate, modify or update records in a database table using a SQL UPDATE statement. Specifying a WHERE clause
Read more