up_fail / base.py
DmitrMakeev's picture
Update base.py
aef9fa6 verified
raw
history blame
367 Bytes
# Функция для замены NULL на пустые строки
def replace_null_with_empty_string(conn):
cursor = conn.cursor()
query = """
UPDATE contacts
SET
name = COALESCE(name, ''),
phone = COALESCE(phone, ''),
email = COALESCE(email, '')
"""
cursor.execute(query)
conn.commit()