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.
このクエリの何が問題になっていますか?
ALTER TABLE KARGO ADD COLUMN test VARCHAR(100) NOT NULL DEFAULT t
DEFAULT tビットが間違っています。
DEFAULT t
デフォルト値を引用する必要がありますDEFAULT 't'
DEFAULT 't'
フィールドが varchar であるため、デフォルト値は引用符で囲む必要があります。正しい構文:
ALTER TABLE KARGO ADD COLUMN testt VARCHAR (100) NOT NULL DEFAULT 't'