欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

pymysql使用

程序员文章站 2022-05-28 16:26:15
...

ubuntu安装mysql:

https://www.jianshu.com/p/99c4baca1983

sudo apt-get install mysql-server
sudo apt-get install mysql-client
sudo apt-get install libmysqlclient-dev

mysql -h [IP] -u root -p
-h IP地址(本地可以不加) -u 用户 -p之后输入密码(没有密码可以不加)

exit
退出

使用:

https://www.cnblogs.com/chongdongxiaoyu/p/8951433.html

cerate database hellowd;
创建一个数据库

use day59;
进入数据库

create table userinfo (id int auto_increment primary key,name varchar(10) not null, pwd varchar(18) not null );
创建一个userinfo表(dropout删除)

desc userinfo;
查看表结构是否正确

insert into userinfo (name, pwd) values (“alex”, “alex3714”),(“xiaohei”, “123456”),(“yimi”, “654321”);
添加3条测试数据

select * from userinfo;
查看数据
select * from userinfo where name=“alex” and pwd=“alex3714”;
根据特定的用户名和密码从数据库中检索

show tables;

UPDATE table_name SET field1=new-value1, field2=new-value2
[WHERE Clause]