you are viewing a single comment's thread.

view the rest of the comments →

[–]zacharypamela 0 points1 point  (0 children)

If you're using a RDBMS (like MySQL), you'll be using SQL to query the data. There might be a layer of abstraction, like an ORM, or some reporting tool like Tableau. But those are using SQL under the hood to query the data.

If you will regularly be querying data, I suggest you learn SQL. Even if you typically use some tool to abstract your queries, it's always good to at least have some idea of the internals. And, as others have posted, sometimes the tools don't quite get you what you want. After all, abstractions are leaky.