sql - Update foreign key column from not null to null -
how can update foreign key column in table not null null without having recreate table?
i tried use this:
update tblproduct set consumerid not null
please advise, thank
did try this?
alter table [table] alter column [column] integer null
Comments
Post a Comment