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.
我为我们的客户创建了一张桌子。它包括出生日期字段。我想添加另一个名为 Age 的字段,并希望让它自动增加年龄。
是否可以在 SQL 数据库中执行此操作?
非常感谢您提前提供的任何帮助!
好吧,您可以在每次触发选择查询时进行计算。
SELECT name, birth, TIMESTAMPDIFF(YEAR,birth,CURDATE()) AS age FROM your_table;