从表中查找空值并将其替换为space - sqlite

时间:2012-09-25 14:51:50

标签: ios sqlite replace find

我有sqlite数据库。

在某些列中,我有空值。

我想用空格替换空值..

对此有任何疑问吗?

请告诉我

1 个答案:

答案 0 :(得分:3)

使用IFNULL。在查询中:

SELECT IFNULL(mycolumn, ' ') FROM mytable

或者更改表格中的数据:

UPDATE mytable SET mycolumn = IFNULL(mycolumn, ' ')

可替换地:

UPDATE mytable SET mycolumn = ' ' WHERE mycolumn IS NULL