Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Beginning with SQL [closed]

Tags:

sql

I am enthusiastic to enter the world of Databases through SQL, but I don't know if there's prerequisites of any significance and I only know C# and Java.

Besides these, what tools do I need? I have Visual Studio 2008 and SQL Server Management Studio. What else do I need? Is it necessary to download a server OS?

like image 358
Natasha Avatar asked Dec 07 '22 03:12

Natasha


1 Answers

I recommend you to try SQL Server Express, it is the easiest server to work with if you are developing with C#. If you would like to learn SQL using Java almost any data base would be good.

A data base server it's a software like any other, you will have to communicate with it through your own program, making a connection, throwing SQL commands and interpreting its results. If you only wanted to learn SQL you also could install a client for the chosen data base server and learn through it, after that you could try to connect your program to this data base. In this case SQLite would work pretty good for you.

like image 56
Alfre2 Avatar answered Dec 28 '22 20:12

Alfre2