这是我的SQL命令行。
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 122
Server version: 5.0.95 Source distribution
我有一张表,从python,我想将最后一列以零为单。最终,特定行的最后一列将获得我将用作不再处理该行的标志的日期邮票。
+---------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+---------------+-------------+------+-----+---------+-------+
| Action | char(1) | NO | | R | |
| EndpointId | int(11) | NO | MUL | NULL | |
| DeviceType | smallint(6) | NO | | NULL | |
| ChannelNumber | smallint(6) | NO | | 0 | |
| ActionDate | date | YES | | NULL | |
| InsertDate | date | YES | | NULL | |
+---------------+-------------+------+-----+---------+-------+
如何将null放入插入查询字符串中?换句话说,我不知道如何在python查询字符串中表示null。
sql_cmd =
"""insert into cs_remove
(
Action, EndpointId, DeviceType, ChannelNumber, ActionDate, InsertDate
)
VALUES
(
%s, %s, %s, %s, %s, %s
)
"""
print(base_date)
sql_data = ('R', ept_id, ept_type, ept_ch, "NULL", base_date);
示例将0000-00-00放入日期字符串中。我要null。我可以从MySQL命令行中执行此操作,但不能从Python中执行此操作。任何帮助将不胜感激。
您应该使用Python中的None
值来表示您正在尝试插入的NULL
mySQL值。喜欢:
sql_data = ('R', ept_id, ept_type, ept_ch, base_date, None);
这是对此问题的另一篇文章的引用:https://bytes.com/topic/python/answers/166025-python-mysql-intert-null
以及这篇文章:如何使用Python插入MySQL数据库?