我正在使用数据库,并且在 column_x 中一些变量为 NULL。由于有人不喜欢这个,我们决定将其更改为“无”。现在我使用以下命令在 Python 中更改它:
query = "update stone set results = 'None' where results is null;"
但是当我这样做时:
query = "SELECT * FROM stone where part = 'ABC';"
我得到一个输出 'x','y','z',None,'a'
但是当我这样做时:
query = "SELECT * FROM stone where part = 'ABC' and results = 'None';"
我得到()返回。这可能是因为“无”不存在。这么短的问题很长,我如何通过 Python 更改 None -> 'None'?