替换空值的 SQL 查询。
我需要一个从下表中返回 ContactDate、SortName、City、ContactType 和 Summary 的 SQL 查询。 如果任何值为空,我需要它返回文本“No Entry”。
ContactTable
- ContactID
- ContactDate
- UserID
- 摘要
- ContactType
- SortName
UserTable
- UserID
- FirstName
- LastName
- AddressID
AddressTable
- AddressID
- 城市
- 街道
- 邮政编码
- 州
I need a SQL query that returns ContactDate, SortName, City, ContactType, and Summary from the tables below. If any value is null, I need it to return the text “No Entry”.
ContactTable
- ContactID
- ContactDate
- UserID
- Summary
- ContactType
- SortName
UserTable
- UserID
- FirstName
- LastName
- AddressID
AddressTable
- AddressID
- City
- Street
- State
- Zip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您还可以对每一列进行不同的调用。 这将需要更多的单独调用,但如果您没有很多行需要更新,速度可能会更快。
对每一列重复此操作。
You can also make different calls for each column. It will take more individual calls, but it may be faster if you don't have many rows to update.
Repeat for each column.
这里是上述 CONVERT 语句的 SQL 日期时间格式图表。
Here is a chart of SQL DateTime formats for the CONVERT statement above.
COALESCE() 在任何有价值的平台上。
确保处理好选角问题。
如:
等等等等。
COALESCE() on any platform that is worth its weight in salt.
Make sure to handle casting issues.
Such as:
etc., etc.
使用 ISNULL 非常简单。
Using ISNULL is pretty simple.
该函数的 Oracle 版本称为
nvl
。 用法相同——SELECT nvl(col_name,desired_value) FROM foo
。更通用的版本是
decode
,它具有三个参数,并允许您指定要执行替换的列值(因此您可以将所有“Johnny”替换为“John”或其他内容) )。The Oracle version of this function is called
nvl
. Same usage --SELECT nvl(col_name, desired_value) FROM foo
.The more general version of this is
decode
, which has three parameters and allows you to specify which column value you want to perform a replacement for (so you can replace all 'Johnny' with 'John' or something).使用“IIF”是一种 Access DB 解决方案,但也可以在其他 DB 中使用。
函数 IIF 返回 2 个值之一,具体取决于表达式的计算。
SQL 语法:
IIF( 表达式, 真值 1, 假值 )
Using 'IIF' is an Access DB solution but may work in other DBs.
The function IIF returns one of 2 values depends of the evaluation of an expression.
SQL Syntax:
IIF( expression, true-value1, false-value )