MySQL必知必会第十章计算字段

database

第十章--计算字段
1.字段:字段(field) 基本上与列(column)的意思相同,经常互换使用,不过数据库列一般称为列,而术语字段通常用在计算字段的 连接上。
2.拼接字段:将值联结到一起构成单个值。在MySQL的SELECT语句中,可使用Concat()函数来拼接两个列。
    select Concat(prod_names,"(",prod_id, ")") from products order by prod_names ;
3.RTrim()函数去掉值右边的所有空格。通过使用RTrim(),各个列都进行了整理。LTrim()(去掉串左边的空格)
    select Concat(RTrim(prod_names),"(", RTrim(prod_id), ")") from products order by prod_names ;
4.使用别名
    select Concat(prod_names,"(",prod_id, ")") as title from products order by prod_names ;
5.MySQL支持基本算术操作符,圆括号可以区分优先级
    select prod_names,prod_id, prod_price*item as totalPrice from products ;

以上是 MySQL必知必会第十章计算字段 的全部内容, 来源链接: utcz.com/z/533122.html

回到顶部