G
Guest
Hi
I need to run a quick check on a table which will tell me the most
characters used in each field.
I can use
SELECT Max(Len(myfieldname)) as fieldnameMaxLen,
FROM mytable
which works for one field at a time but how can I change it so that it give
me the max len of each field in the table even if I add/remove fields.
Cheers
Matt
I need to run a quick check on a table which will tell me the most
characters used in each field.
I can use
SELECT Max(Len(myfieldname)) as fieldnameMaxLen,
FROM mytable
which works for one field at a time but how can I change it so that it give
me the max len of each field in the table even if I add/remove fields.
Cheers
Matt