当前位置: 首页 > 工具软件 > crystal-mysql > 使用案例 >

mysql

姜玮
2023-12-01

1. python mysql查不到最新数据

Python创建pymysql连接时,设置 autocommit=True ,即让其操作后自动提交事务。

参考博客:

解决pymysql查不到最新数据的办法 - wintest - 博客园

2. mysql添加列,修改列,删除列

  • 添加列:alter table 表名 add column 列名 varchar(30);
  • 删除列:alter table 表名 drop column 列名;
  • 修改列名MySQL: alter table bbb change nnnnn hh int;

3. mysql 查找字段为空,不为空的方法总结

不为空

Select   *   From   table Where id!=''

为空
Select   *   From   table Where id=''
Select   *   From   table Where   ISNULL(id)

 类似资料: