What software should i use ti develop sql | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What software should i use ti develop sql

3rd Jul 2017, 5:21 PM
Manasseh Adu - Gyan
Manasseh Adu - Gyan - avatar
2 Answers
+ 4
I recommend SQLite for small or medium projects (not involving huge datasets and extreme client/server traffic capacities). www.sqlite.org
3rd Jul 2017, 5:56 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 2
First, sql is a language used for manipulating data, e.g. creating/defining data structures, selecting which data to retrieve, use filters or set the order in which the data is returned etc. Try Sololearn's sql fundamentals course, it can help a lot to understand. Secondly, it's not something you use to develop applications, people use sql to manipulate data, you need to learn it so you can later develop applications (with a programming language of your choice) that can interact with database servers. Anyway, I think you can start by installing a database server, most of them usually support command line interface. You can start from there. I personally recommend you to try mysql first, as it is one of the most popular database server and has its own strong community from where you can learn more interactively. There are other database server apps out there that has their own extension sets for the standard sql, like Postgresql, and Microsoft's sql server with its t-sql. I recommend you start experimenting with the standard/basic sql first, then continue on with proprietary/specific sql. Happy learning
3rd Jul 2017, 6:13 PM
Ipang