I created a table with the SQL:
CREATE TABLE `definition` ( name_sha256 CHAR(64) NOT NULL, id BIGINT UNSIGNED NOT NULL PRIMARY KEY, measure_name VARCHAR(256) NOT NULL ) and I want to check the upper bound of the field measure_name.
I explored around and only saw options to fetch the max value from existing rows by using
SELECT MAX((LENGTH(measure_name)) FROM definition which returns 50 based current values in the table but I expect to see the 256.
Would like to get help for retrieving the max bound