Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the central columns feature in Phpmyadmin? [duplicate]

There are some questions like How to use "central columns" in phpmyadmin? in Stackoverflow realted to my question. But it does not explain what is the usage of this feature.

What is the central columns feature in Phpmyadmin?

like image 644
I am the Most Stupid Person Avatar asked Oct 19 '25 15:10

I am the Most Stupid Person


1 Answers

Central columns is a phpMyAdmin feature that makes it easy to copy a column definition to another table. This can be useful when defining tables linked by a foreign key. It's available only in phpMyAdmin 4.3 and later and it requires configuration storage to have been setup.

Copying a column definition to another table with central columns - Learning phpMyAdmin Video Tutorial - LinkedIn Learning, formerly Lynda.com

To add a column to central list, go to table structure page, check the columns you want to include and then simply click on “Add to central columns”. If you want to add all unique columns from more than one table from a database then go to database structure page, check the tables you want to include and then select “Add columns to central list”.

FAQ - Frequently Asked Questions — phpMyAdmin 5.2.2-dev documentation

like image 72
ScaisEdge Avatar answered Oct 22 '25 05:10

ScaisEdge