Data exploration: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "== references ==" to "== References ==") Tags: Mobile edit Mobile web edit |
|||
| Line 6: | Line 6: | ||
More details on [[PHP_and_MySQL_syntax#Length_of_characters | length of characters]] page. | More details on [[PHP_and_MySQL_syntax#Length_of_characters | length of characters]] page. | ||
== | == References == | ||
<references/> | <references/> | ||
Revision as of 17:11, 10 July 2022
Maximum length of characters in a column
- Excel[1]: =MAX(LEN(Sheet1!A2:Sheet1!A1048576)) where 1048576 is the rows limit of Excel spreadsheet[2].
- MySQL: Using CHAR_LENGTH() function - w3resource e.g. =SELECT MAX(CHAR_LENGTH(`my_column`)) FROM `my_table`
Not using LENGTH() function.
More details on length of characters page.
References