How can i get mySql column Length/Values

前端 未结 3 1312
一生所求
一生所求 2021-01-25 04:30

I can get column table information with this command, but that don\'t return column Length/Values, how can i get that?

SELECT COLUMN_NAME, DATA_TYPE         


        
3条回答
  •  失恋的感觉
    2021-01-25 05:03

    SQL has a LEN() Function. Which will give you a length of a field. However updated would be the solution:

    UPDATED

    SELECT CHARACTER_MAXIMUM_LENGTH FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = 'Database' AND TABLE_NAME = 'Table' AND COLUMN_NAME = 'Field'
    

    Hope that helps

提交回复
热议问题