How can specify expression in LIKE operator
I want to select all row in table where column Name starts with a-zA-Z followed by # and does not have two dots together (..)
i tries this WHERE NAME LIKE '%[a-zA-Z]#'
How can specify expression in LIKE operator
I want to select all row in table where column Name starts with a-zA-Z followed by # and does not have two dots together (..)
i tries this WHERE NAME LIKE '%[a-zA-Z]#'