operators

Are "charlist" style wildcards part of the SQL-92 standard?

The SQL wildcards "%" and "_" are well documented and widely known. However as w3schools explains, there are also "charlist" style wildcards for matching a single character within or outside a given range, for example to find all the people called Carl but not those called Earl: select * from Person where FirstName like '[A-D]arl' ......