在現(xiàn)有的學(xué)生表對(duì)姓名的字段進(jìn)行非空約束,可以先update學(xué)生表的姓名字段為null,再通過alter才觸發(fā)器設(shè)置姓名字段為非空not null。這樣操作就可以把現(xiàn)有的學(xué)生表中姓名字段設(shè)置為非空值約束了。
創(chuàng)新互聯(lián)專注于平橋網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供平橋營銷型網(wǎng)站建設(shè),平橋網(wǎng)站制作、平橋網(wǎng)頁設(shè)計(jì)、平橋網(wǎng)站官網(wǎng)定制、成都小程序開發(fā)服務(wù),打造平橋網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供平橋網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
create trigger DataProarea on testtable
for insert as
if exists(select * from inserted where TestFileds is null)
BEGIN
PRINT 'TestFileds是空值!'
ROLLBACK TRANSACTION
END
ELSE if not exists(select * from inserted join peopletable on inserted.TestFileds=peopletable.Peoplefileds)
begin
PRINT 'TestFileds的值在peopletable表的Peoplefileds中不存在!'
ROLLBACK TRANSACTION
end
GO
空值數(shù)據(jù): select count(*) from YourTable where YourColumnName is null
非空值數(shù)據(jù): select count(*) from YourTable where YourColumnName is not null
sqlserver Oracle Access 都通用的!