Updating an old ASP / Access site for a client - I need SQL to add a column to an existing table and set a default value. Doesn't work - any ideas?
It works great
ALTER TABLE documents ADD COLUMN membersOnly NUMBER
I want this to work:
ALTER TABLE documents ADD COLUMN membersOnly NUMBER DEFAULT 0
I have googled and the seen instructions for default values โโwork for other types of fields, but I want to add a number. Thanks!
source
share