在 SQL Server 中,ISNULL 函数用于检查指定的表达式是否为 NULL
ISNULL(check_expression, replacement_value)
其中:
check_expression
是要检查的表达式。replacement_value
是在 check_expression
为 NULL 时返回的值。例如,假设我们有一个名为 employees
的表,其中包含 employee_id
、first_name
和 last_name
列。我们想要选择所有员工的姓名,如果 first_name
为 NULL,则使用 “Unknown” 作为默认值。可以使用以下查询实现这一目标:
SELECT employee_id, ISNULL(first_name, 'Unknown') AS first_name, last_name
FROM employees;
在这个示例中,如果 first_name
为 NULL,ISNULL
函数将返回 “Unknown”。