如何根据表上的特定列进行比较多个列?
我有一个表,我想根据表上的特定列比较多个列,
例如:
我的表名是x2,并且有四个列(a,b,c,speed)
A B C speed
5 4 5 5
2 4 2 2
6 2 7 2
我想比较A和B列A和B和B和C基于列速
i have a table and i want to compare multiple columns based on specific column on the table
for example :
my table names is x2 and has four columns which they ( A , B , C , speed )
A B C speed
5 4 5 5
2 4 2 2
6 2 7 2
I want to compare columns A and B and C based on column speed
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个可能的解决方案,如果我们想检查列是否等于
speed
一个:A possible solution, in case we want to check whether columns are equal to the
speed
one: