Below are two options for finding those rows that contain alphanumeric characters in MySQL.
Alphanumeric characters are alphabetic characters and numeric characters.
Continue readingBelow are two options for finding those rows that contain alphanumeric characters in MySQL.
Alphanumeric characters are alphabetic characters and numeric characters.
Continue readingIn MariaDB, we can use the GROUP_CONCAT()
function to return our query results as a comma separated list. By that I mean, for a given column, we can convert all rows into a single row that contains a comma separated list of the values that made up that column. Each row is a separate item in the list.
Here are four options for returning rows that contain lowercase characters in Oracle Database.
Continue readingHere’s an example of returning rows that contain alphanumeric characters in SQLite.
Alphanumeric characters are alphabetic characters and numeric characters.
Continue readingIn MariaDB, you can use the DATE_FORMAT()
function to return the month name and day name from a date.
This function accepts an optional argument that let’s you specify the language that is used for the result.
Continue readingOracle Database includes several views that contain information about triggers in the database. We can use these views to return a list of triggers.
Continue readingHere are four options for returning rows that contain lowercase characters in MariaDB.
Continue readingHere are some options for subtracting one or more hours from a datetime value in MariaDB.
Continue readingThe following examples return only those rows that have numeric values in a given column in Oracle Database.
These examples use the REGEXP_LIKE
function to return values that match the specified pattern.
In SQL Server, a recovery model is a database property that controls how transactions are logged, whether the transaction log requires (and allows) backing up, and what kinds of restore operations are available. Databases can use one of the following three recovery models: simple, full, and bulk-logged.
You can query the sys.databases
catalog view to get a list of databases and their recovery models.