Question: How can I check the validity of a column elements in MySQL that were derived from another column of the same table?
For example, if I have a Project_ID = 123456 in one column and Project_Name mysql error = R123456. I want to check if Project_Name was correctly input with prefix R in every elements. What query can I use?
9codings