MySQL常用命令全集
MySQL是流行的開源關(guān)系數(shù)據(jù)庫管理系統(tǒng),被廣泛地用于 Web 應(yīng)用程序的開發(fā)。下面是 MySQL 的常用命令全集:
連接 MySQL 數(shù)據(jù)庫服務(wù)器
mysql -h 主機名 -u 用戶名 -p
顯示所有的數(shù)據(jù)庫
show databases;
選擇某個數(shù)據(jù)庫
use 數(shù)據(jù)庫名;
顯示數(shù)據(jù)庫中所有的表
show tables;
創(chuàng)建數(shù)據(jù)庫
create database 數(shù)據(jù)庫名;
刪除數(shù)據(jù)庫
drop database 數(shù)據(jù)庫名;
創(chuàng)建表
create table 表名 (字段名 類型, 字段名 類型, ...);
刪除表
drop table 表名;
查詢表中數(shù)據(jù)
select * from 表名;
插入數(shù)據(jù)
insert into 表名 (字段名, 字段名, ...) values (值, 值, ...);
更新數(shù)據(jù)
update 表名 set 字段名 = 值, 字段名 = 值, ... where 條件;
刪除數(shù)據(jù)
delete from 表名 where 條件;
更改表結(jié)構(gòu)
alter table 表名 add (字段名 類型, 字段名 類型, ...);
alter table 表名 drop 字段名;
alter table 表名 modify 字段名 類型;
以上是 MySQL 常用的命令,如果有需要,還可以使用 show columns from 表名 命令查看表結(jié)構(gòu)信息。