gpt4 book ai didi

sql - 如何将值 'NULL'输入到SQL Server中的nvarchar列中?

转载 作者:行者123 更新时间:2023-12-03 02:04:38 25 4
gpt4 key购买 nike

我需要将文字值“NULL”作为默认值插入到 nvarchar 列中。但是当我插入记录时,默认值为 db NULL 而不是文字“NULL”。有人能告诉我哪里出错了吗?

最佳答案

所以你想要插入实际的“NULL”字符串?尝试这样的事情:

create table NullTable
(
nvarchar(100) not null default 'NULL',
.... -- your other fields
)

编辑: 这是一个完整的解决方案

create table InsertNull
(
Nullfield nvarchar(100) not null default 'NULL',
someint int not null
)
go

insert into insertnull(someint)
select 20

select *
from InsertNull

关于sql - 如何将值 'NULL'输入到SQL Server中的nvarchar列中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8000397/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com