this post was submitted on 12 Dec 2024
311 points (99.4% liked)
Memes
45899 readers
2178 users here now
Rules:
- Be civil and nice.
- Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I keep an empty sql DB just for importing and working with spreadsheets to minimize how much I have to fuck with excel.
I do a lot of my wrangling in R for more ad hoc stuff.
Mind elaborating? I'm interested in anything keeping me away from excel
You can also use BULK INSERT for csvs or just INSERT INTO and some text editing depending on the specifics.
This is more for one-off stuff like analyzing some 10,000 row spreadsheet you've been handed that you could probably do with formulas in excel, but it's easier to use sql, but not worth building a proper process for.
Might want to give notebooks like Jupyter a try - they make for a pretty good time when it comes to working with data.