如何在列中添加表达式?

时间:2014-07-02 04:18:03

标签: mysql

我是mysql的新手,想知道如何在msaccess中添加表达式?

我应该选择哪种数据类型?我可以直接在字段中使用表达式吗?

假设我有这些字段:

name: ID type: int(11)
name: one type: int(11)
name: two type: int(11)
name: total: [one]*[two]

1 个答案:

答案 0 :(得分:0)

MySQL没有计算列。但是,您可以创建一个模拟此视图的视图:

CREATE OR REPLACE VIEW my_view
AS
SELECT id, one, two, one * two AS total
FROM   my_table