Mysql基础第十三天,创建计算字段
Posted 2019ab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql基础第十三天,创建计算字段相关的知识,希望对你有一定的参考价值。
计算字段
select prod_id,quantity,item_price*100 as expanded_price from orderitems;
拼接字段
select concat(vend_name,'(',vend_country,')') from vendors;
使用别名
select concat(vend_name,vend_country) as name_country from vendors; // 使用别名
select concat(vend_name,vend_country) name_country from vendors; // 可以不加as
执行算数计算
select item_price*100 as expanded_price from orderitems;
以上是关于Mysql基础第十三天,创建计算字段的主要内容,如果未能解决你的问题,请参考以下文章