length of column across all tables in a MySQL Database -
How to get the maximum column size of the common column like 'ID' in all tables in MySQL
notification_select the TABLE_NAME, COLUMN_NAME, DATA_TYPE, CHARACTER_MAXIMUM_LENGTH, where column_name = 'id' order 3;
Use this
This will solve this problem
Comments
Post a Comment