mysql
文章平均质量分 50
liuyingan
这个作者很懒,什么都没留下…
展开
-
mysql alter 语句用法,添加、修改、删除字段等(转)
//主键549830479 alter table tabelname add new_field_id int(5) unsigned default 0 not null auto_increment ,add primary key (new_field_id); //增加一个新列549830479 alter table t2 add d timestamp; ...原创 2013-03-31 22:28:56 · 90 阅读 · 0 评论 -
mysql远程访问的设置z
不能远程访问几种可能: 1.设置用户权限时,没有设置成“%” 2.另外my.cnf,还有个设置bind-address = X.X.X.X 3.linux服务器上设置了防火墙 ==================================================================== 第一步: 激活网络设置 你需要编辑mysql配置文件my.cnf. 通常...原创 2012-11-04 19:02:58 · 119 阅读 · 0 评论 -
mysql获取时间函数z
1.1 获得当前日期+时间(date + time)函数:now() 除了 now() 函数能获得当前的日期时间外,MySQL 中还有下面的函数: current_timestamp() current_timestamp localtime() localtime localtimestamp() localtimestamp 这些日期时间函数,都等同于 now()...原创 2012-11-20 12:24:44 · 114 阅读 · 0 评论 -
MySql中添加用户,新建数据库,用户授权,删除用户,修改密码
MySql中添加用户,新建数据库,用户授权,删除用户,修改密码(注意每行后边都跟个;表示一个命令语句结束): 1.新建用户 登录MYSQL: @>mysql -u root -p @>密码 创建用户: mysql> insert into mysql.user(Host,User,Password) values("localhost","test",pas...原创 2012-12-10 15:13:48 · 102 阅读 · 0 评论 -
mysql中key 、primary key 、unique key 与index区别【转】
https://blog.csdn.net/nanamasuda/article/details/52543177原创 2018-03-27 10:35:25 · 133 阅读 · 0 评论 -
mysql按规则显示表名
SHOW TABLES WHERE tables_in_test NOT LIKE 'temp_%' AND tables_in_test LIKE '%_history' Replace test with your DB name. https://stackoverflow.com/questions/44088187/exclude-tables...原创 2018-04-01 13:36:51 · 433 阅读 · 0 评论 -
mysql本机无法通过ip访问
我是以root用户登录mysql的,通过grand对admin用户进行授权,flush privileges,但之后通过代码无法通过机器ip进行访问。我查看了下mysql下user表的各用户的权限信息 mysql> SELECT host,user,password,Grant_priv,Super_priv FROM mysql.user; +--------------+-------...原创 2018-04-13 16:06:04 · 2941 阅读 · 0 评论 -
mysql link fail
问题现象 com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received...原创 2018-05-15 14:14:15 · 226 阅读 · 0 评论