次のようにビューを変更したい:
ALTER VIEW [dbo].[ViewOne] as
SELECT columnOne, -- not null
columnTwo, --not null
(convert(decimal(2,0), columnOne)) as columnThree -- I want this not to be NULL
FROM DBOne.TableOne
columnOne は「非 null」であるため、columnThree も「非 null」に強制したいと考えています。columnOne はアルガリズムのみが取り込まれた char(2) であるため、可能、不可能、暗黙的、役に立たない、または深刻な問題を引き起こす可能性があります。
私は単に構文を知りたいです