MySQL入門操作

2021-07-13 23:55:20 字數 1562 閱讀 3180

登入到mysql

mysql -h 主機名 -u 使用者名稱 -p 密碼

檢視mysql的版本號

select version(); 

檢視mysql的當前日期

select current_date(); 

顯示當前存在的資料庫

show databases; 

建立乙個資料庫

create database 資料庫名;

選擇操作的資料庫

use 資料庫名;

顯示當前選擇的資料庫

select database(); 

建立資料庫表

create table 表名稱(列宣告);

顯示當前資料庫中存在的表

show tables;

顯示表(mytable)的內容

select * from mytable; 

顯示表的結構

describe mytable; 

向表中插入資料

insert into 表名(列名1, 列名2, 列名3, ...) values (值1, 值2, 值3, ...);

查詢表中的資料

select 列名稱 from 表名稱 [where 查詢條件];

使用萬用字元 * 查詢表中所有的內容

select * from 表名;

更新表中的資料

update 表名稱 set 列名稱=新值 where 更新條件;

刪除表中的資料

delete from 表名稱 where 刪除條件;

建立後表的修改

新增列

alter table 表名 add 列名 列資料型別;

修改列

alter table 表名 change 列名稱 列新名稱 新資料型別;

刪除列

alter table 表名 drop 列名稱;

重新命名表

alter table 表名 rename 新錶名;

刪除整張表

drop table 表名;

刪除整個資料庫

drop database 資料庫名;

修改 root 使用者密碼

mysqladmin -u root -p password 新密碼

MySQL操作入門

提取碼 n4mt 設定環境變數 1.mysql 設定為c program files x86 目錄下mysql根目錄 2.path中增加 mysql bin路徑 常用命令 安裝服務 mysqld install 初始化 mysqld initialize console 開啟服務 net start...

mysql入門操作 MySql基礎操作

ddl 資料庫 建立資料庫 create database資料庫名 刪除資料庫 drop database 資料庫名 建立表 create table table name column name column type engine innodb default charset utf8 刪除表 ...

Mysql 入門操作使用

1 安裝好mysql 2 開啟mysql服務 以管理員身份進入 3 在dos命令視窗輸入mysql hlocalhost uroot p回車進入mysql資料庫,其中 h表示伺服器名,localhost表示本地 u為資料庫使用者名稱,root是mysql預設使用者名稱 p為密碼,如果設定了密碼,可直...