vote up 2 vote down star

I have a column which is of type nvarchar(max). How do I find the length of the string (or the number of bytes) for the column for each row in the table?

flag

63% accept rate

2 Answers

vote up 5 vote down check

SELECT LEN(columnName) AS MyLength FROM myTable

link|flag
vote up 0 vote down

If you want to find out the max there should be a way for you to get the schema of the table. Normally you can do something like SHOW COLUMNS in SQL or a DESCRIBE style command. In a mysql shell that can be shortened to:

desc tablename;

Then if you want to determine the length of a string there is normally a function like LENGTH (for bytes) or CHAR_LENGTH (for characters).

SELECT *, LENGTH(fieldname) AS len FROM tablename
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.