Home > Database > Mysql Tutorial > body text

初学者必读 MySQL 数据库常见问题汇总_MySQL

WBOY
Release: 2016-06-01 14:01:06
Original
1163 people have browsed it

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

identified by "xuys1234";

查看结果,执行:

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步。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template