替换空值的 SQL 查询。

发布于 2024-07-06 23:46:58 字数 540 浏览 6 评论 0原文

我需要一个从下表中返回 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

兔小萌 2024-07-13 23:46:59

您还可以对每一列进行不同的调用。 这将需要更多的单独调用,但如果您没有很多行需要更新,速度可能会更快。

update ContactTable
set ContactDate = 'No Entry'
where ContactDate is null;

对每一列重复此操作。

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.

update ContactTable
set ContactDate = 'No Entry'
where ContactDate is null;

Repeat for each column.

萌化 2024-07-13 23:46:58
SELECT COALESCE(CAST(CONVERT(VARCHAR(10), ContactTable.ContactDate, 101) AS VARCHAR(10)), 'No Entry') AS ContactDate,
       COALESCE(ContactTable.SortName, 'No Entry') AS SortName,
       COALESCE(AddressTable.City, 'No Entry') AS City,
       COALESCE(ContactTable.ContactType, 'No Entry') AS ContactType
FROM ContactTable
LEFT OUTER JOIN UserTable ON ContactTable.UserID = UserTable.UserID
LEFT OUTER JOIN AddressTable ON UserTable.AddressID = AddressTable.AddressID

这里是上述 CONVERT 语句的 SQL 日期时间格式图表。

SELECT COALESCE(CAST(CONVERT(VARCHAR(10), ContactTable.ContactDate, 101) AS VARCHAR(10)), 'No Entry') AS ContactDate,
       COALESCE(ContactTable.SortName, 'No Entry') AS SortName,
       COALESCE(AddressTable.City, 'No Entry') AS City,
       COALESCE(ContactTable.ContactType, 'No Entry') AS ContactType
FROM ContactTable
LEFT OUTER JOIN UserTable ON ContactTable.UserID = UserTable.UserID
LEFT OUTER JOIN AddressTable ON UserTable.AddressID = AddressTable.AddressID

Here is a chart of SQL DateTime formats for the CONVERT statement above.

年少掌心 2024-07-13 23:46:58

COALESCE() 在任何有价值的平台上。

确保处理好选角问题。

如:

--(SQL Server)
SELECT
  C.ContactID,
  COALESCE(CAST(CONVERT(varchar(10), C.ContactDate, 101) AS varchar(10), 'No Entry') AS ContactDate,
  COALESCE(SorName, 'No Entry') AS SortName

等等等等。

COALESCE() on any platform that is worth its weight in salt.

Make sure to handle casting issues.

Such as:

--(SQL Server)
SELECT
  C.ContactID,
  COALESCE(CAST(CONVERT(varchar(10), C.ContactDate, 101) AS varchar(10), 'No Entry') AS ContactDate,
  COALESCE(SorName, 'No Entry') AS SortName

etc., etc.

感情废物 2024-07-13 23:46:58
SELECT 
  ISNULL(ContactDate, 'No Entry') AS ContactDate
FROM Table

使用 ISNULL 非常简单。

SELECT 
  ISNULL(ContactDate, 'No Entry') AS ContactDate
FROM Table

Using ISNULL is pretty simple.

无需解释 2024-07-13 23:46:58

该函数的 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).

花辞树 2024-07-13 23:46:58

使用“IIF”是一种 Access DB 解决方案,但也可以在其他 DB 中使用。

SELECT IIF(IsNull(Foo), 'No Entry' ,Foo), IIF(IsNull(Bar), 'No Entry' ,Bar) From TableName   

函数 IIF 返回 2 个值之一,具体取决于表达式的计算。
SQL 语法:
IIF( 表达式, 真值 1, 假值 )

Using 'IIF' is an Access DB solution but may work in other DBs.

SELECT IIF(IsNull(Foo), 'No Entry' ,Foo), IIF(IsNull(Bar), 'No Entry' ,Bar) From TableName   

The function IIF returns one of 2 values depends of the evaluation of an expression.
SQL Syntax:
IIF( expression, true-value1, false-value )

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文