MySQL數據庫常見問題匯總:
1.關於自增字段重新賦初值的問題?
ALTER TABLE tbl AUTO_INCREMENT = 1;
2.如何實現mysql中自增長字段的功能?
create table abc(id int(10) not null auto_incremnet primary key,
name varchar(10) not null,
address varchar(200) not null,
postcode char(6) not null
);
這樣就創建了一個表,這個表的id子段是自動增長的。
你還可以在一建好的表中增加這樣的字段,操作如下:
alter table tb_name add id int(10) not null auto_increment first;
或者
alter table tb_name add id int(10) not null auto_increment;
3、如何更改mysql中用戶密碼?
a、在mysql/bin/目錄下面
./mysqladmin -u[用戶名如:root] -p[舊密碼,如果沒有密碼留空] password [新密碼]
./mysqladmin -uroot -p123456 password 456789
其中 用戶名: root 原來密碼: 123456 新密碼: 456789
b、以root用戶進入mysql
mysql> use mysql
mysql>update user set Password=password('newpassword') where User='root';
mysql>flush privileges;
注意大小寫。
4、如何遠程連接mysql
(1)進入mysql,創建一個新用戶xuys:
格式:grant 權限 on 數據庫名.表名 用戶@登錄主機 identified by "用戶密碼";
grant select,update,insert,delete on *.* to [email protected] 1234";
identified by "xuys
查看結果,執行:
use mysql;
select host,user,password from user;
可以看到在user表中已有剛才創建的xuys用戶。host字段表示登錄的主機,其值可以用IP,也可用主機名,將host字段的值改為%就表示在任何客戶端機器上能以xuys用戶登錄到mysql服務器,建議在開發時設為%。
update user set host = '%' where user = 'xuys';
(2) mysqladmin -uroot -ppwd reload
mysqladmin -uroot -ppwd shutdown
(3)./mysqld_safe --user=root &
記住:對授權表的任何修改都需要重新reload,即執行第3步。
如果經過以上3個步驟還是無法從客戶端連接,請執行以下操作,
在mysql數據庫的db表中插入一條記錄:
use mysql;
insert into db values
('192.168.88.234','%','xuys','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
update db set host = '%' where user = 'xuys';
重復執行上面的第2、3步。
上文介紹的都是在MySQL數據庫操作過程中經常會遇到的,還有很多別的問題,這裡就不一一為大家介紹了,本文比較適合初學者學習,供大家參考。