Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 mysqldump 创建我的数据表的转储。唯一的问题是,mysql 将 null 值存储为/N,如果我想将创建的 CSV 文件导入 HANA,/N 不称为 null,而是称为 varchar。
有没有办法在转储期间跳过空值,或者我可以用空白替换 /N 吗?
据我所知,没有处理 NULL 输出的选项。您可以尝试在表中将 NULL 替换为空:
UPDATE `tablename` SET columnname= '' where columnname is null