
MySql
流氓小猴子
我不生产数据,我只是数据的搬运工!
展开
-
MySQL安装教程
MySQL安装图解 一、MYSQL的安装1、打开下载的mysql安装文件mysql-5.5.27-win32.zip,双击解压缩,运行“setup.exe”。 2、选择安装类型,有“Typical(默认)”、“Complete(完全)”、“Custom(用户自定义)”三个选项,选择“Custom”,按“next”键继续。 3、点选“Browse”,手动指定安装原创 2017-07-09 23:04:08 · 337 阅读 · 0 评论 -
在window命令行查看Msql表乱码的解决办法和mysql命令行打开流程、打开mysqlServer服务
原创 2017-07-10 22:30:55 · 365 阅读 · 0 评论 -
window安装MYSQL出错:a windows service with the name MYSQL already...service.
安装mysql5.5,安装时提示:a windows service with the nameMySQLalready exists.Please uninstall this service correctly or choose a different name for the new service.有一下几步方法解决:其实mysql在windows 7 下还暗藏了一招,在...原创 2017-07-09 23:29:25 · 38533 阅读 · 9 评论 -
sql 替换字段中的部分字符,替换指定字符
把列中凡是有2011的全部修改成2014,如 time里的201101131431改成201401131431,写法: update tab set time= replace(time,'2011','2014');原创 2018-09-03 11:04:59 · 16456 阅读 · 2 评论 -
求出A表中的字段不等于B表中的字段
SELECT*FROM test_copyWHERE area_name NOT IN ( SELECT name2 FROM yt_baseinfo AS base )原创 2018-09-03 15:56:19 · 1409 阅读 · 0 评论