Does Microsoft have a free version of MySQL?

  • Thread starter Hodgey8806
  • Start date
  • Tags
    Mysql
In summary, this person wants to use SQL without buying a license, but they are unsure if the software they are looking for is what they need. They mention Microsoft's MySQL download, but are unsure if it is what they need. They recommend Google as a resource.
  • #1
Hodgey8806
145
3
I am wanting to gain experience with SQL without buying a license. I am planning to buy a program that shows you how to create databases as well as write code for them. However, this program requires that I have an SQL setup to use.

I saw that Microsoft has a MySQL download but I'm not sure it is what I need for the program specifically...I just need to be able to access a way to write codes and try it out.

Any help would be great!

Thank you :)
 
Computer science news on Phys.org
  • #2
Microsoft makes SQL Server not MySQL. SQL Express is the free version of Microsoft SQL Server.
 
  • #3
I've used Visual Studio 2010 Express in my web design course, which involved SQL code. You can download that for free from Microsoft.
 
  • #4
Some thoughts. Here are some free versions of SQL

MySQL
- is popular for PHP programmed websites
- there is a version of PHP which runs inside of java
SQL light
- is integrated into the android office system
HyperSQL
- is used in open office applications.
- allows you to program database triggers
- is programmed in java

This is just some facts off the top of my head. Google is your friend.

-----------------

On another note, with regards to programming, a lot of these systems will have common functionality. If you are wring a program, you can write an interface and adapt it to each type of SQL. This will make your code easier to port from one type of database to another. One especially powerfully way to do this is to construct queries pragmatically. This is especially easy to do if the language supports lambda expressions:
http://geekswithblogs.net/samerpaul...standing-of-lambda-expressions-in-c-linq.aspx
 
  • #5
mysql.com has the freely downloadable MySQL Community Server:

http://www.mysql.com/downloads/

That page has a prominent link to a "MySQL Installer for Windows." I can't try it because I'm on a Mac.

On a Mac, MySQL installs via the standard MacOS clickable package mechanism, and you can run SQL commands via the basic command-line interface by invoking the 'mysql' command at the command line in a MacOS Terminal window. I imagine there's something similar for a basic Windows setup.
 
Last edited:
  • #6
There are different ways to interface with the database manager, it depends on how you plan to use MySQL. The easiest way is, as jtbell mentioned, to run MySQL from the command line - this works in Windows too. If your program is teaching MySQL specifically, I'm sure it will spell this out for you.

Otherwise, you can write programs (Java, .NET, etc) to interface with your database. Or you could run a web server and create a web page to handle it. You can install a complete Apache, MySQL, PHP stack without too much fuss.
 

Related to Does Microsoft have a free version of MySQL?

1. What is MySQL?

MySQL is an open-source relational database management system (RDBMS) that is used to store and manage large amounts of data.

2. Is MySQL free to use?

Yes, MySQL is free to use and is released under the terms of the GNU General Public License (GPL). This means that it can be freely used, modified, and distributed for both commercial and non-commercial purposes.

3. Does Microsoft have a free version of MySQL?

No, Microsoft does not have a free version of MySQL. However, they do offer a similar database management system called Microsoft SQL Server, which is not open-source and requires a license to use.

4. What is the difference between MySQL and Microsoft SQL Server?

Both MySQL and Microsoft SQL Server are relational database management systems, but they have some key differences. MySQL is open-source and free to use, while Microsoft SQL Server is proprietary and requires a license. Additionally, MySQL is commonly used for web applications, while Microsoft SQL Server is often used for enterprise-level applications.

5. Can I migrate from MySQL to Microsoft SQL Server or vice versa?

Yes, it is possible to migrate from MySQL to Microsoft SQL Server or vice versa. However, there may be some differences in syntax and functionality between the two systems, so it is important to carefully plan and test the migration process.

Similar threads

Replies
7
Views
267
  • Programming and Computer Science
Replies
16
Views
1K
  • Programming and Computer Science
Replies
7
Views
460
  • Programming and Computer Science
Replies
12
Views
9K
  • Programming and Computer Science
Replies
8
Views
702
Replies
38
Views
3K
  • Programming and Computer Science
Replies
21
Views
580
  • Programming and Computer Science
Replies
16
Views
2K
  • Computing and Technology
Replies
13
Views
966
Replies
7
Views
1K
Back
Top