如果单元格包含 vb.net 中的空值,如何更改 datagidview 单元格的值
如果 SQL Server 数据库中的列包含 null dbnull 值,那么当我在 datagridview 中查看数据库表时,如何将其替换为“N/A”字符串
If a column contains null dbnull value in sql server database then how can i replace it with "N/A" string when i view the database table in datagridview
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设列是字符类型而不是数字,您始终可以更改填充
SELECT
的 SQL 并使用:ISNULL(col1,'N/A')
另一种选择就是这样做:
Assuming the column is a character type and not numeric, you could always alter the SQL that populates the
SELECT
and use:ISNULL(col1,'N/A')
Another option is to do this: