MySQL數(shù)據(jù)庫是常用的一種關(guān)系型數(shù)據(jù)庫。下面介紹MySQL數(shù)據(jù)庫的基本操作。
1. 連接到服務(wù)器
$ mysql -h hostname -u username -p
其中,hostname為服務(wù)器地址,username為用戶名,-p表示需要輸入密碼。
2. 顯示數(shù)據(jù)庫
mysql>show databases;
3. 創(chuàng)建數(shù)據(jù)庫
mysql>create database databasename;
其中,databasename為需要創(chuàng)建的數(shù)據(jù)庫名。
4. 刪除數(shù)據(jù)庫
mysql>drop database databasename;
5. 進(jìn)入數(shù)據(jù)庫
mysql>use databasename;
6. 顯示數(shù)據(jù)庫表
mysql>show tables;
7. 創(chuàng)建表
mysql>create table tablename ( column1 datatype, column2 datatype, column3 datatype, ..... );
其中,tablename為需要創(chuàng)建的表名,column1、column2、column3為表的字段名,datatype為數(shù)據(jù)類型。
8. 插入數(shù)據(jù)
mysql>insert into tablename (column1, column2, column3, ....) values (value1, value2, value3, .....);
其中,tablename為需要插入數(shù)據(jù)的表名,column1、column2、column3為表的字段名,value1、value2、value3為對應(yīng)的字段值。
9. 選擇數(shù)據(jù)
mysql>select * from tablename;
其中,tablename為需要選擇數(shù)據(jù)的表名,*表示選擇所有字段。
10. 更新數(shù)據(jù)
mysql>update tablename set column1=value1, column2=value2 where condition;
其中,tablename為需要更新數(shù)據(jù)的表名,column1、column2為需要更新的字段名,value1、value2為對應(yīng)的字段值,condition為更新的條件。
11. 刪除數(shù)據(jù)
mysql>delete from tablename where condition;
其中,tablename為需要刪除數(shù)據(jù)的表名,condition為刪除的條件。
以上就是MySQL數(shù)據(jù)庫的基本操作,希望對大家有所幫助。