Oracle根据一个字段值如何取到和它同行的另一指定字段的值?

2025-12-15 08:47:29
推荐回答(2个)
回答1:

select tab.另一个字段 from tab where tab.一个字段 = “值”

回答2:

select a.user_name from t_test a where a.user_no='123213';