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

Popular posts from this blog

python - cx_oracle unable to find Oracle Client -

stringtemplate - StringTemplate4 if conditional with length -

shader - OpenGL Shadow Map -