Data exploration: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
{{Template:Draft}} | |||
== Maximum length of characters in a column == | == Maximum length of characters in a column == | ||
| Line 6: | Line 8: | ||
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/> | ||
{{Template: | {{Template:Data factory flow}} | ||
[[Category:Spreadsheet]] | [[Category:Spreadsheet]] | ||
Latest revision as of 11:32, 15 July 2025
Maximum length of characters in a column[edit]
- 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[edit]
Data factory flow
- 🔍 Data Collection: 1. How to extract content from websites
- 🧹 Data Cleaning: 2. Data cleaning, 3. Regular expression
- ⚙️ Data Processing: 4. Json encode and decode, 5. Convert between date and unix timestamp, 6. MySQL commands
- 📊 Data Analysis: 7. Data exploration
- 📤 Data Output: 8. Comparison of common data file formats, 9. Export MySQL query to Excel file, 10. Microsoft Excel
- 🔧 Troubleshooting: 11. Troubleshooting of MySQL errors