MySQL 是一種關(guān)系型數(shù)據(jù)庫管理系統(tǒng),是目前最流行的開源數(shù)據(jù)庫之一。它可以運行在各種平臺上,包括 Linux、Windows、OS X 等。
MySQL 的入口是通過命令行方式來進(jìn)行操作的。在不同的操作系統(tǒng)中,打開命令行的方式也不同。
以 Windows 為例,可以打開“開始菜單”,選擇“運行”,輸入cmd 后回車,打開命令行界面。
C:\Users\xxxx>mysql -u root -p Enter password: ******
在命令行輸入以上命令,可以進(jìn)入 MySQL 數(shù)據(jù)庫。其中 -u 參數(shù)指定用戶名,-p 參數(shù)表示輸入密碼。如果不指定參數(shù),MySQL 將使用默認(rèn)的參數(shù)。
在進(jìn)入 MySQL 數(shù)據(jù)庫后,可以輸入 SQL 語句來進(jìn)行各種操作,如創(chuàng)建數(shù)據(jù)庫、創(chuàng)建表、插入數(shù)據(jù)、查詢數(shù)據(jù)等。
mysql>create database test; mysql>use test; mysql>create table users (id int not null auto_increment, name varchar(20) not null, age int not null, primary key (id)); mysql>insert into users (name, age) values ('Tom', 18); mysql>select * from users; +----+------+-----+ | id | name | age | +----+------+-----+ | 1 | Tom | 18 | +----+------+-----+ 1 row in set (0.00 sec)
以上是幾個常用的 SQL 語句示例,可以在 MySQL 數(shù)據(jù)庫中執(zhí)行,對于想學(xué)習(xí) MySQL 的同學(xué)們,可以多進(jìn)行嘗試和練習(xí)。