MySQL操作手記

2021-05-24 01:13:18 字數 1313 閱讀 3863

啟動伺服器: mysqld -- console

停止伺服器: mysqladmin -u root shutdown

連線伺服器: mysql - h host -u user -p (mysql 127.0.0.1 -u willem -p)

斷開: quit

增加資料庫: create database wil091028

表增加列: alter table tablename add column cname ctype

設列為主鍵: add primary key (c)

建立表: create table pet (name varchar(20) , owner varchar(20))

自增編號: creat table 'database'.'table' ( 'id' int unsigned not null auto_increatent primary key, ... )

儲存表和列資訊的表: information_schema.tables information_schema.columns

建立使用者: grant all privileges on *.* to 'monty'@"local host' identified by 'some_pass' with grant option

grant all privileges on *.* to 'monty'@'%' dentified by 'some_pass' with grant option

資料匯入: mysqlimport --localhost --user=wil --password=091028 db file.txt

資料匯出: mysqldump -u willem -p dbname tbname > d:/users.sql

新增列: alter table 'users' add 'cname' text not null

修改列: alter table 'tbname' modify column 'fieldname' varchar(14)

刪除列: alter table tbname drop column cname

改列名: alter table tbname change oldcname newcname text not null

改表名: rename table oldtbname to newtbname

建外鍵: alter table tbname add constraint fk_name foregin key (cname) reference tbname(id) on delete restriction update restrict

YH kylin系統 操作手記

1 操作 sudo su 免root登入 sudo passwd 更改root密碼 passwd 更改當前登入普通賬戶密碼 ctrl d 主機板頁返回 ctrl alt f1 圖形退回命令介面 ctrl alt f7 返回圖形介面 ethtool p 加網絡卡名 檢視網口 systemctl ena...

CentOS安裝Mysql操作手冊

2.通過ssh上傳至centos虛機 二 安裝mysql依賴 1.檢視linux上是否已經安裝了mariadb,有則解除安裝。一般centos7預設安裝了mariadb,會和mysql衝突,這裡把它解除安裝。檢視 root localhost bin rpm qa grep mariadb 顯示已安...

mysql簡單操作手冊 MySQL常用基本操作

一,建立使用者 命令 create user username host identified by password 說明 username 你將建立的使用者名稱,host 指定該使用者在哪個主機上可以登陸,如果是本地使用者可用localhost,如果想讓該使用者可以從任意遠端主機登陸,可以使用萬...