I have a massive database, it has more than 2,000 rows, and the second column has an ENUM that allows only 'Option 1' and 'Option 2'. If I enter 200 rows in the table and write the wrong ENUM name as an example insert into tabela values ('blabla', 'Ocao 2')
it will return an empty area in the ENUM field and this would lead to a major headache. Is there any way in SQL to prevent this from happening, like a check structure, preventing me from running the code?