这个mysql语句是什么意思?

时间:2014-03-18 23:04:12

标签: mysql

有人可以告诉我下面命令产生的值代表什么?

select name, current_date - date_of_birth as age from name;

1 个答案:

答案 0 :(得分:3)

选择name列,然后计算current_date - date_of_birth表达式(即current_date值(包含当前日期),date_of_birth列减去)然后将其存储为age表中的name列。