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.
这可能是一个愚蠢的问题,所以请原谅我。我组成了一个表,其中包含这些列 id、name、email 和 sent.. 我需要默认发送值是 1.. 它是一个邮件列表,所以很明显,如果用户将数据输入表单并提交,他们会喜欢被邮寄..最好将其设置为“按定义”并将其设置为1,还是有其他方法?
提前致谢。
ALTER TABLE yourtablename ADD COLUMN sent INT DEFAULT 1;
这会将更改的表的默认值设置为 1。只需指定您的表名和适合您需要的数据类型,而不是“INT”。
ALTER TABLE 语法