Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL Base には、デフォルト値を列に設定するオプションがありますか? お気に入り
ALTER TABLE blablub MODIFY test SET DEFAULT '0'
解決策、Grzegorz Oledzki のおかげ:
ALTER TABLE blablub MODIFY test NOT NULL WITH DEFAULT
ただし、DEFAULT値を自分で定義できないため、ちょっとばかげています。