SQL:
select b.fbil_bill_no
  from (select fe.fexp_consign_id
          from fexpense fe
         where fe.fexp_bill_no = b.fbil_bill_no) tt,
       fbill b
 where b.fbil_org_id = '135'
编译出现错误,提示"B"."FBILL_BILL_NO": invalid identifier
这是什么意思,有问题吗??
编译时FROM从右到左,把fbill b移动到from旁边也不行。。