Does SQL have any versatility? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Does SQL have any versatility?

Is SQL used for anything outside querying databases? Just wondering if I’d ever use it if I decide not to pursue a DB path.

13th May 2020, 5:35 PM
Chris Thompson
Chris Thompson - avatar
5 Answers
+ 4
SQL is a DSL, or Domain Specific Language, which means it’s created to just do one specific thing. So you cant really do much more with it than writing queries for databases. If you’re not going to do any db stuff, you could get by without it. Languages like Python or Java are GPL’s or General Purpose Languages, and they are designed for a lot of different applications.
14th May 2020, 2:45 AM
Runcible
+ 3
SQL is made specifically for that job so no not really. Microsoft's Azure Stream Analytics for example uses SQL to query data but that's also kind of similar to a database. There are other services like it too but 99% of use cases are regular old-fashioned databases. C# has LINQ built in which is similar to SQL, so learning SQL makes sense even if you won't use it that often, similar concepts appear all over the software sciences.
13th May 2020, 6:19 PM
Schindlabua
Schindlabua - avatar
+ 3
Thanks, thats a really helpful response!
13th May 2020, 6:30 PM
Chris Thompson
Chris Thompson - avatar
+ 3
The SQL skillset has proven to be an extremely valuable asset in my career. In fact, I believe SQL to be the single most powerful and versatile “programming” language I know.I have been able to use SQL to solve many problems, and it’s my go-to tool anytime I face a new challenge. In fact, I keep an instance of PostgreSQL running on my laptop so I can quickly hop into my favorite SQL GUI whenever I need to test something out.
14th May 2020, 5:15 AM
Divya Peddapalyam
Divya Peddapalyam - avatar
+ 1
Very good to know. Thanks!
14th May 2020, 2:47 AM
Chris Thompson
Chris Thompson - avatar