为什么单独select b.UNIT_PRICE 单价 from PO_LINES_ALL b,PO_HEADERS_ALL c where rownum=1
and b.po_header_id=c.po_header_id
order by to_char(c.reply_date,'YYYYMMDD')DESC
能运行,
但是把它当作嵌套查询使用时,(select b.UNIT_PRICE 单价 from PO_LINES_ALL b,PO_HEADERS_ALL c where rownum=1
and b.po_header_id=c.po_header_id
order by to_char(c.reply_date,'YYYYMMDD')DESC)提示错误信息:缺少左括号!!!
WHY??????????????????
你可不用这种方法的:
rownum=1
order by to_char(c.reply_date,'YYYYMMDD')DESC
比如改成:
and c.reply_date=(select max(c.reply_date) from ......... )
你不是想取最大的reply_date吗?有很多种方法的