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