How to check if the string contains just lowercase characters, numbers and the symbol "@" in SQL
Im trying something like this:
ALTER TABLE TABLE1
    ADD CONSTRAINT c1
        CHECK (
            (R1 like '%[abcdefghijklmnobqrstuvwxyz@1234567890]%')
            );
 
     
    