Linux和MySQL是大家在進(jìn)行開發(fā)和管理時(shí)常常會(huì)使用的系統(tǒng)和數(shù)據(jù)庫,了解它們的基本命令可以提高我們的工作效率,下面介紹一些常用的命令:
1. Linux常用命令: cd 進(jìn)入指定目錄 ls 查看目錄內(nèi)容 mkdir 新建文件夾 cat 查看文件內(nèi)容 rm 刪除文件或文件夾 chmod 修改文件權(quán)限 cp 復(fù)制文件 mv 移動(dòng)文件 top 查看系統(tǒng)資源分配 ps 查看進(jìn)程信息 firewall-cmd 防火墻命令 service 開啟、關(guān)閉、重啟服務(wù) ifconfig 查看網(wǎng)絡(luò)狀態(tài) iptable 防火墻命令 iptables-save 保存防火墻規(guī)則
2. MySQL常用命令: show databases; 顯示所有數(shù)據(jù)庫 use dbname; 使用一個(gè)數(shù)據(jù)庫 show tables; 顯示數(shù)據(jù)庫中所有表 describe tablename; 顯示表結(jié)構(gòu) select * from tablename; 顯示表數(shù)據(jù) insert into tablename (column1,column2...) values (value1,value2...); 插入數(shù)據(jù) update tablename set column=value where condition; 更新數(shù)據(jù) delete from tablename where condition; 刪除數(shù)據(jù) create database dbname; 創(chuàng)建一個(gè)數(shù)據(jù)庫 create table tablename (column1 type1,column2 type2,...); 創(chuàng)建一個(gè)表 drop database dbname; 刪除一個(gè)數(shù)據(jù)庫 drop table tablename; 刪除一個(gè)表 alter table tablename add column type; 增加一個(gè)字段 alter table tablename modify column type; 修改一個(gè)字段類型
以上就是一些Linux和MySQL的基本命令的介紹,掌握這些命令可以讓我們更加熟練的使用系統(tǒng)和數(shù)據(jù)庫,提高我們的工作效率。