Which is the correct query to find out the number of ENUM('M','F','NA') datatypes columns that exist in all databases?
Answer
Correct Answer: SELECT count(*) FROM information_schema.columns WHERE data_type = 'enum' ;
Explanation:
Note: This Question is unanswered, help us to find answer for this one