oracle 字符串 连接 比较

2024-11-22 06:26:41
推荐回答(2个)
回答1:

select 表1.*,表2.* from 表1,表2
where to_char(表1.a) = to_char(表2.b|| 表2.c)

回答2:

where 表1.a = to_char(表2.b)||表2.c