mysql
Posted ...
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql相关的知识,希望对你有一定的参考价值。
安装:
mysql Installer 下载
mysql-installer-community-5.7.19.0.msi:https://dev.mysql.com/downloads/file/?id=471661
下载双击安装,如果报错,点击execute安装一些需要的软件
mysql启动报错
ERROR 2003 (HY000): Can\'t connect to MySQL server on \'localhost\' (10061 "Unknown error")
因为mysql服务没有启动,解决方法win10
net start mysql
Install/Remove of the Service Denied!
切换到管理员模式,在运行mysqld --install
卸载
mysqld --remove
1mysql数据库使用:
数据库常用操作
mysql> create database test;
mysql> use test;
mysql> describe user;
数据库表查询
mysql> select * from user;
2python处理mysql的使用
import mysql.connector conn=mysql.connector.connect(user=\'root\',password=\'1234\',database=\'test\') cursor=conn.cursor() #创建表 #cursor.execute(\'create table user(id varchar(20)primary key,name varchar(20))\') #插入一行记录,注意MySQL的占位符是%s cursor.execute(\'insert into user(id,name)values(%s,%s)\',[\'1\',\'xueli\']) #返回数据的行 print cursor.rowcount #提交事务 conn.commit() # 关闭Cursor: cursor.close() #关闭Connection: conn.close()
查询
#查询
conn=mysql.connector.connect(user=\'root\',password=\'1234\',database=\'test\') cursor=conn.cursor()
cursor.execute(\'select * from user where id=%s\',(\'1\',)) #这里注意这个,
values=cursor.fetchall() print values #[(u\'1\', u\'xueli\')] # 关闭Cursor: cursor.close() #关闭Connection: conn.close()
以上是关于mysql的主要内容,如果未能解决你的问题,请参考以下文章
连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段
使用 json rereiver php mysql 在片段中填充列表视图
关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段
修改MySQL密码报错“ERROR 1819 (HY000): Your password does not satisfy the current policy requirements“(代码片段