The table structure looks like this:
registrant_id varchar(16) registrant_name varchar(128)
I want to run a query that displays all those records that correspond to the maximum resolving length, i.e. what I am currently doing for the above:
SELECT * FROM `tm_registrant` WHERE length( `registrant_name` ) = 128
However, I donβt want to hardcode 128, because I have many columns, and I want to run one query to see all the records that have at least one fully filled column.
source share