stibbs
11/08/2021, 9:20 AMsql
-- currently like this
priority smallint default 0
-- I want to change it to something like this
priority smallint generated always as (if x is not null and y is not null then 1 else 0 end) stored;
Scott P
11/08/2021, 3:22 PMstibbs
11/08/2021, 10:28 PMstibbs
11/08/2021, 10:29 PM