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.
我正在使用 Squirrel SQL Client 3.5.0。我正在导出到 sql 文件中的 session/scripts/store 结果。
我需要知道值何时为空,因为结果中会返回空值。如果您知道我如何将其导出“null”,请提供帮助。目前它只是导出 2 个逗号,就好像该字段为空一样。一定是要出关了,没找到。
使用这样的东西:
SELECT ISNULL(thidfield,"NULL") from <sometable> WHERE <somestuff>
这会将文本“NULL”放在值为 null 的位置
对于 SQL-SERVER ...在不知道您的服务器类型的情况下,语法可能会有所不同。