You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT*FROM (SELECT Z1.*, ROWNUM PHALCON_RN FROM (SELECTp.PAY_ORDER_POS_IDAS payOrderPosId, o.PAY_DATEAS payDate, a.LAST_NAMEAS lastName FROM PAY_ORDER_POS p
INNER JOIN PAY_ORDER o ONp.PAY_ORDER_ID=o.PAY_ORDER_IDINNER JOIN ANKETA a ONa.ANKETA_ID=o.ANKETA_ID) Z1 WHERE ROWNUM <=10);
gives correct results from the database.
What's the problem here?
The text was updated successfully, but these errors were encountered:
Considering the following piece of code:
It generates the following result: (i have already applied my "AS" aliasing fix)
Meanwhile the generated SQL query to database:
gives correct results from the database.
What's the problem here?
The text was updated successfully, but these errors were encountered: