今天是我第一次學習使用mysql數據庫,我開始先了解了一些基本概念和常用命令:
mysql -u用戶名 -p show databases; //顯示所有數據庫 use 數據庫名; //選擇要操作的數據庫 show tables; //顯示當前數據庫中的所有表
接著我嘗試著創建了一個新的數據庫,并在其中創建了一個新的表:
create database mytest; use mytest; create table mytable( id int primary key, name char(20), age int ); show tables;
然后我在這個表中插入了一些測試數據:
insert into mytable values(1, 'John', 20); insert into mytable values(2, 'Peter', 25); insert into mytable values(3, 'Rachel', 18); select * from mytable;
接著我嘗試著進行一些查詢操作:
select * from mytable where name='Peter'; select name, age from mytable where age>20; select count(*) from mytable;
最后,在操作完成后,我退出了mysql:
exit
今天的學習雖然只是初步接觸,但我深刻意識到了mysql在數據管理和查詢方面的重要性,也明白了要深入學習mysql所需要的基礎知識和技能。