If you have a column in a database table that contains character data, but some rows also contain numbers, you can use the following SQL queries to return just those rows that don’t contain numbers within the value.
PostgreSQL
SQL CASE Statement
In SQL, the CASE statement evaluates a list of conditions and returns one of multiple possible result expressions.
In some ways, the SQL CASE statement is kind of similar to the IF...ELSE statement in that it allows us to check for a given condition and return a different result depending on the outcome.
Detect Whether a Value Contains at Least One Numerical Digit in SQL
Sometimes you might need to search a database table for only those rows that contain at least one number in a given column.
Technically, numbers can be represented by words and other symbols, but here “number” means “numerical digit”.
Below are examples of how to find rows that contain at least one number in various SQL based DBMSs.
How to Convert a Unix Timestamp to a Date/Time Value in PostgreSQL
In PostgreSQL, we can use the to_timestamp() function to convert a Unix timestamp value to a date/time value.
The Unix timestamp (also known as Unix Epoch time, Unix time, or POSIX time) is the number of seconds that have elapsed since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC).
2 Ways to Return Rows that Contain Non-Alphanumeric Characters in PostgreSQL
Below are two options for returning rows that only contain non-alphanumeric characters in PostgreSQL.
Non-alphanumeric characters include punctuation characters like !@#&()–[{}]:;',?/* and symbols like `~$^+=<>“, as well as whitespace characters like the space or tab characters.
Subtract Weeks from a Date in PostgreSQL
We can use the - operator to subtract one or more weeks from a date in PostgreSQL.