gpt4 book ai didi

mysql - 我如何使用 mysql rows 值作为属性?

转载 作者:行者123 更新时间:2023-11-29 10:30:41 25 4
gpt4 key购买 nike

我有 mysql 表,如果行值为 value_2,我想使用行值,因为属性billow 是示例:表1:

Attribute_1 Attribute_2  Attribute_3
1 Value_2 10
2 Value_2 20
3 Value_1 30

我想要的结果是滚滚的:

Attribute_1 Value_2  
1 10
2 20

你的帮助是值得赞赏的

谢谢

最佳答案

查看您的示例,您似乎正在寻找别名

select Attribute_1 , Attribute_3 as Value
from my_table

并且不要使用如果需要,- 减去使用下划线 _ 或对带有空格“属性 1”的列使用反引号

更新已更改的问题

select Attribute_1 , Attribute_2 as Value_2
from my_table
where Attribute_2 ='value_2'

但是你不应该改变原来的问题,否则其他用户无法正确理解答案..

关于mysql - 我如何使用 mysql rows 值作为属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47457450/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com