您好,登錄后才能下訂單哦!
登錄MySQL,如果連接遠程數(shù)據(jù)庫,需要用-h指定hostname。
#mysql -h hostname -u root -p
#mysql -uroot -p -S /data/3306/mysql.sock #本地登錄
更新數(shù)據(jù)庫的權(quán)限/特權(quán)。
mysql> flush privileges;
查看數(shù)據(jù)表的字段格式。
mysql> desc [table name];
刪除一個數(shù)據(jù)庫。
mysql> drop database [database name];
刪除一個數(shù)據(jù)表。
mysql> drop table [table name];
mysql>delete from 表名;清空表記錄
刪除表中[user] = ‘blog’的行。
mysql> DELETE from [table name] where [user] = 'blog';
刪除列。
mysql> alter table [table name] drop column [column name];
新增列到db。
mysql> alter table [table name] add column [new column name] varchar (20);
更改列名。
mysql> alter table [table name] change [old column name] [new column name] varchar (50);
增加唯一的列。
mysql> alter table [table name] add unique ([column name]);
設(shè)置列值大點。
mysql> alter table [table name] modify [column name] VARCHAR(3);
刪除唯一列。
mysql> alter table [table name] drop index [colmn name];
改字段的名稱用change,改類型用modify,修改字段名字;
mysql> alter table students change couese courses char(10) after name;
mysql> insert into students (name,sex) value('gao','m'); 在表中插入數(shù)據(jù);
mysql> insert into students values('aa33','mysql','20','m'); 不指定字段則為所有字段;
mysql> update students set courses='long'; update修改數(shù)據(jù),不使用where則修改所有數(shù)據(jù)
mysql> update students set courses='aaa' where name='lei'; 使用where
mysql> delete from students where courses='aaa'; 刪除某行
mysql> create user 'www'@'%' identified by 'www123'; 創(chuàng)建用戶www密碼為www123
mysql> show grants for 'www'@'%'; 查看用戶的權(quán)限
mysql> grant all privileges on mydb.* to 'www'@'%'; 授mydb的所有表的權(quán)給www
新建一個用戶。以root登錄。切換到mysql數(shù)據(jù)庫,創(chuàng)建用戶,刷新權(quán)限。
# mysql -u root -p
mysql> use mysql;
mysql> INSERT INTO user (Host,User,Password) VALUES('%','www',PASSWORD('123456'));
mysql> flush privileges;
mysql> alter table students add couese char(100); 添加字段
導(dǎo)出一個數(shù)據(jù)庫。
#mysqldump -u username -ppassword --databases databasename >/tmp/databasename.sql
從一個數(shù)據(jù)庫導(dǎo)出一個表。
#mysqldump -c -u username -ppassword databasename tablename > /tmp/databasename.tablename.sql
從sql文件還原數(shù)據(jù)庫(數(shù)據(jù)表)。
# mysql -u username -ppassword databasename < /tmp/databasename.sql
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。