I have these rows:
db666405.gallery
db666405.table1
db666405.table2
I want to capture the word after the dot.
How to do with regex in mysql?
I have tried with ^\. or [.], but I did not succeed.
SELECT *
FROM `table`
WHERE `column` REGEXP '^\\.'
.gallery?