문제

In oracle 10g, i want to get data for the username and email columns where the table name is HP.

I used the following code:

 select rawtohex(username||chr(58)||email) from HP

But I get:

ORA-00942: With error table or view does not exist

도움이 되었습니까?

해결책

Could it be that user and table are in different schemas? What is the output of 2 next statements:

select user from dual;
select owner from all_tables where table_name = 'HP';
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top