MySQL是一種在Mac OS X上使用的流行的關系型數據庫系統。它可以被用于網站,商務系統,及其他許多應用程序中。使用它可以存儲和訪問大量數據,同時可以輕松地添加,刪除或更新數據。
安裝MySQL for Mac OS X非常簡單,只需下載最新的安裝程序即可。在安裝過程中,您將被要求輸入數據庫的根用戶密碼。安裝完成后,您就可以通過命令行或一個GUI工具使用這個數據庫。
$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 10 Server version: 5.7.25 Homebrew Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
通過命令行進入MySQL后,您可以執行各種操作,如創建表、插入數據,以及查詢數據。以下是一個簡單示例,展示如何創建一個名為“employees”的表,并插入一些行。
mysql>CREATE TABLE employees ( ->id INT NOT NULL AUTO_INCREMENT, ->name VARCHAR(30) NOT NULL, ->age INT NOT NULL, ->PRIMARY KEY (id) ->); Query OK, 0 rows affected (0.26 sec) mysql>INSERT INTO employees (name, age) VALUES ('Alice', 25); Query OK, 1 row affected (0.06 sec) mysql>INSERT INTO employees (name, age) VALUES ('Bob', 30); Query OK, 1 row affected (0.02 sec) mysql>SELECT * FROM employees; +----+-------+-----+ | id | name | age | +----+-------+-----+ | 1 | Alice | 25 | | 2 | Bob | 30 | +----+-------+-----+ 2 rows in set (0.00 sec)
MySQL for Mac OS X是一個功能豐富的數據庫系統,它在Mac平臺上很受歡迎。通過了解基本的命令和示例操作,您可以開始創建、存儲和訪問您的數據。