达梦8查询将空值置为NULL方法
2024年05月22日 616阅读 2 字 0 条评论
SQL如下:
SELECT DECODE(column_name, '', NULL, column_name) AS column_name FROM table_name;
评论已关闭