Practice mySQL on home Mac
I need to practice my SQL skills and only have a Mac at home. I am a beginner with SQL so would be creating some small databases and running queries. What is the most affordable way to do this?
I need to practice my SQL skills and only have a Mac at home. I am a beginner with SQL so would be creating some small databases and running queries. What is the most affordable way to do this?
The free and simplest approach would be to use the SQLite3 database included with macOS in /usr/bin/sqlite3. Its documentation is available on the SQLite website. You may also find value in the free visual DB Browser for SQLite tool.
This choice is far less complicated and better supported than installing and mucking about with the MySQL community edition database product.
The free and simplest approach would be to use the SQLite3 database included with macOS in /usr/bin/sqlite3. Its documentation is available on the SQLite website. You may also find value in the free visual DB Browser for SQLite tool.
This choice is far less complicated and better supported than installing and mucking about with the MySQL community edition database product.
Practice mySQL on home Mac