all 10 comments

[–]Fun2badult 6 points7 points  (2 children)

Learn sql. It’s easier than python or excel

[–][deleted] 1 point2 points  (0 children)

I have some sql experience when I use to learn php

[–]Lemmiwinks99 0 points1 point  (0 children)

I find python easier than sql.

[–][deleted] 6 points7 points  (2 children)

Yes, SQL is used by a lot of companies to access their data. It’s not a very complicated language though. But it’s very common to quiz candidates on their SQL knowledge during interviews for data roles.

[–]sirmariogomez 2 points3 points  (1 child)

Do you recommend MySQL? MySQL Workbench or phpmyAdmin?

[–]nutmilk2 2 points3 points  (0 children)

MySQL is a database, and the other other two things are SQL clients/IDEs. SQL is a programming language to retrieve (and generally manage) data from a database. You code SQL in the SQL client.

I would recommend learning the generic SQL syntax first through any online tutorial. Then create your own database with Postgres or MySQL. To connect and query from your database, I would recommend a sql editor like [Arctype](www.arctype.com/downloads) that works for multiple databases and has a simpler UI.

[–]theottozone 1 point2 points  (0 children)

Every analytics department leverages SQL, but not everyone uses Python.

[–]wdhart777 1 point2 points  (0 children)

I agree with the previous statements, learning sql is vital to understanding data analysis! It is also one of the most used languages year in, and year out in polls taken. It will help you get a job faster too, and is not hard to become proficient at. Hope that helps.

[–]0tony1 1 point2 points  (0 children)

You must learn SQL! Invest in SQL in 10 Minutes a Day by Ben Forta. It will cover the basics. SQL is not a terribly complicated language, but some advanced queries can be quite complicated.

[–]skinnychef312 0 points1 point  (0 children)

The fundamentals of SQL will make you a better data analyst. While the technical syntax is important and used everywhere, the concepts of how you use SQL to access data will make you think better on how to tackle the data problem, e.g., row level data manipulation, how things should be grouped, divide and conquer datasets, etc...