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.
我有一个与 mysql 后端数据库耦合的访问前端。谁能告诉我是否有可能生成一个自动填充列的mysql表(即)一旦在A列中添加了一个条目,B列将使用默认文本值自动填充?
MySQL 确实支持列的默认值。但是,如果不使用触发器,它将无法有条件地执行此操作(即基于其他列中的值的某个值)。要更改列上的默认值,您可以运行如下查询:
ALTER TABLE table_name ALTER COLUMN column_name SET DEFAULT 'default value'