gpt4 book ai didi

mysql - 我有两列 : the focal firm's cusip and participants' cusips

转载 作者:行者123 更新时间:2023-11-30 21:38:29 26 4
gpt4 key购买 nike

我的数据库是这样的:

Firm    Agreement id    Year    Cusip_focal        participants_cusips
Abbott Lab 3947 1990 002824 002824 60851C -
Abbott Lab 4441 1990 002824 002824 090597 -
Abbott Lab 5215 1990 002824 002824 47088J -
Mylan Lab 3997 1990 628530 097516 628530 -
Mylan Lab 20967 1993 628530 31528X 628530 -

我想从 participants_cusips 中清除 focal 的 cusip 并为第二家公司获取新的列:

partner
60851C
090597
47088J
097516
31528X

你能帮我解决这个问题吗?

最好的问候,法里德

最佳答案

您可以使用 Replace()函数从 participants_cusips 字符串中删除 Cusip_focal 子字符串。然后,使用 Trim() 删除任何前导/尾随空格功能:

SELECT 
TRIM(REPLACE(participants_cusips, Cusip_focal, '')) AS partner
FROM your_table

关于mysql - 我有两列 : the focal firm's cusip and participants' cusips,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52818798/

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