作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的数据库是这样的:
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/
Structure tables and result query on sqlfiddle 我想使用查询: INSERT INTO Firm('name', 'name_original', 'id
我的数据库是这样的: Firm Agreement id Year Cusip_focal participants_cusips Abbott Lab 3947
我是一名优秀的程序员,十分优秀!