本次實驗旨在通過使用MySQL數據庫,學習并掌握如何進行數據查詢。我使用了MySQL官網提供的免費在線測試數據庫,進行了以下操作。
1. 連接數據庫
mysql -h host -u user -p password
其中,host為數據庫服務器地址;user為用戶名;password為密碼。
2. 查看數據庫列表
show databases;
3. 創建新的數據庫
create database example;
4. 使用數據庫
use example;
5. 創建新表
create table employee ( id int(11) NOT NULL, name varchar(32) NOT NULL, age int(11) NOT NULL, salary float(11) NOT NULL, PRIMARY KEY (id) );
6. 查看表結構
describe employee;
7. 插入數據
insert into employee (id,name,age,salary) values (1,'Tom', 22, 2000.00);
8. 查詢數據
select * from employee;
以上就是本次實驗所進行的操作。通過使用MySQL數據庫進行數據查詢,我掌握了基本的數據查詢語句和操作,提升了我的數據庫操作能力。
上一篇mysql數據查詢工具
下一篇mysql數據查詢最大值