MySQL是一款流行的關(guān)系型數(shù)據(jù)庫(kù)管理系統(tǒng),它提供了許多命令和工具來(lái)管理和查詢數(shù)據(jù)庫(kù)。下面是一些常用的MySQL命令列表:
1. show databases; //顯示所有數(shù)據(jù)庫(kù) 2. use database_name; //切換到指定數(shù)據(jù)庫(kù) 3. show tables; //顯示當(dāng)前數(shù)據(jù)庫(kù)中的所有表 4. describe table_name; //顯示表的結(jié)構(gòu) 5. select * from table_name; //查詢表中的所有數(shù)據(jù) 6. insert into table_name (column1, column2,…) values (value1, value2, …); //插入新數(shù)據(jù) 7. update table_name set column1=value1, column2=value2, … where condition; //更新數(shù)據(jù) 8. delete from table_name where condition; //刪除數(shù)據(jù) 9. create database database_name; //創(chuàng)建新數(shù)據(jù)庫(kù) 10. create table table_name (column1 datatype, column2 datatype, …); //創(chuàng)建新表 11. alter table table_name add column_name datatype; //向表中添加新列 12. drop database database_name; //刪除指定數(shù)據(jù)庫(kù) 13. drop table table_name; //刪除指定表
這些命令可以通過(guò)MySQL命令行工具或圖形界面管理工具執(zhí)行。