Why information_schema.columns
always duplicates the result? For instance,
SELECT column_name
FROM information_schema.columns
WHERE table_name = 'root_blocks'
I will get this,
column_name
blc_id
blc_email
cat_id
blc_created
blc_updated
blc_id
blc_email
cat_id
blc_created
blc_updated
The duplicates go unpredictable on other tables when I try to query through phpmyadmin.
How can I make it not to duplicate?
Thanks.
EDIT: