您好我需要帮助从基于特定行信息(蓝色和红色)的多列中获取数据,然后为每个行条件返回不同的列。
例子 :
来自 Table_Colours
ID | Code Type | Code
1 | Blue | Blue1XX
2 | Red | Red1XX
2 | Blue | Blue1XX
3 | Red | Red1XX
4 | Blue | Blue1XX
4 | Red | Red1XX
5 | Blue | Blue1XX
我需要返回
ID | Blue | Red
1 | Blue1XX |
2 | Blue1XX | Red1XX
3 | | Red1XX
4 | Blue1XX | Red1XX
5 | Blue1XX |
蓝色总是返回 Blue1XX(6 个数字代码) 红色总是返回 Red1XX(5 个数字代码)
我需要使用特定的 ID 字符串进行搜索,例如:
AND ID IN (
'1',
'2',
'3',
'4',
)
任何帮助,将不胜感激。