摘要: 字符串类CHARSET(str) //返回字串字符集CONCAT (string2 [,... ]) //连接字串INSTR (string ,substring ) //返回substring首次在string中出现的位置,不存在返回0LCASE (string2 ... 阅读全文
posted @ 2015-09-21 18:23 饺子吃遍天 阅读(134) 评论(0) 推荐(0)
摘要: SELECT * FROM userinfo u LEFT JOIN arctice a ON u.`id`=a.`uid`#定义存储过程 DROP PROCEDURE IF EXISTS `prg_add`; DELIMITER $$ CREATE PROCED... 阅读全文
posted @ 2015-09-21 18:11 饺子吃遍天 阅读(97) 评论(0) 推荐(0)
摘要: mysql操作用户 mysql中用户有localhost和%两种localhost标志只能本机登录 %表示允许所有的当然也可以指定某些ip能上比如 192.168.4.%mysql新增用户create user test1@'%' identified by 'tes... 阅读全文
posted @ 2015-09-21 16:52 饺子吃遍天 阅读(100) 评论(0) 推荐(0)