MySQL Community Edition is a freely downloadable version of the world's most popular open source database that is supported by an active community of open source developers and enthusiasts.
Download Link: http://dev.mysql.com/downloads/mysql/
Select your platform (windows, etc) and click the appropriate download button.
I am working on excel database (which I found out on this website that it is not a good way to do it) with size of 1.34GB 63 files and growing. I would like to change and continue working in MySQL.
That's a rather large Excel file. To get the data into MySQL once you've installed it:
- Create a catalog (synonymous with "database")
- Save the Excel data to CSV format
- Use MySQL's LOAD DATA INFILE to import content stored in CSV format into a table
I need the database for calculation, analysis and graph.
MySQL can help with the calculation and analysis to some degree - you might have to create functions/stored procedures to get the functionality you desire. Graphing however isn't initially what MySQL can do. MySQL has spatial support, for overlaying on GoogleMaps but I don't know if that's what you're after.