Does Microsoft have a free version of MySQL?

  • Thread starter Thread starter Hodgey8806
  • Start date Start date
  • Tags Tags
    Mysql
AI Thread Summary
To gain experience with SQL without purchasing a license, Microsoft SQL Server Express is recommended as a free version of SQL Server. For those interested in MySQL, the MySQL Community Server can be downloaded for free, and it is suitable for various programming environments, including PHP. Other free SQL options include SQLite, which is integrated into Android, and HyperSQL, used in OpenOffice applications. When programming, it's beneficial to create interfaces that can adapt to different SQL types, making code easier to port. For MySQL, users can run commands via the command line on both Mac and Windows, and setting up a complete Apache, MySQL, and PHP stack is also a viable option for web development.
Hodgey8806
Messages
140
Reaction score
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
Microsoft makes SQL Server not MySQL. SQL Express is the free version of Microsoft SQL Server.
 
I've used Visual Studio 2010 Express in my web design course, which involved SQL code. You can download that for free from Microsoft.
 
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
 
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:
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.
 
I came across a video regarding the use of AI/ML to work through complex datasets to determine complicated protein structures. It is a promising and beneficial use of AI/ML. AlphaFold - The Most Useful Thing AI Has Ever Done https://www.ebi.ac.uk/training/online/courses/alphafold/an-introductory-guide-to-its-strengths-and-limitations/what-is-alphafold/ https://en.wikipedia.org/wiki/AlphaFold https://deepmind.google/about/ Edit/update: The AlphaFold article in Nature John Jumper...
Thread 'Urgent: Physically repair - or bypass - power button on Asus laptop'
Asus Vivobook S14 flip. The power button is wrecked. Unable to turn it on AT ALL. We can get into how and why it got wrecked later, but suffice to say a kitchen knife was involved: These buttons do want to NOT come off, not like other lappies, where they can snap in and out. And they sure don't go back on. So, in the absence of a longer-term solution that might involve a replacement, is there any way I can activate the power button, like with a paperclip or wire or something? It looks...
Back
Top