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;