简体   繁体   中英

How to don't write schema name in oracle sql query?

I have Workspace/Schema EDUCATION in Oracle XE.

In my Java code I want execute queries like this: SELECT * FROM Table instead of SELECT * FROM EDUCATION.Table .

When I write query without EDUCATION I have error: table or view does not exist.

I tried to set the default schema to % (screenshot), but it did not help. 在此处输入图片说明

How to avoid writing Workspace/Schema name?

If I understand correctly, you want to access tables in other schemas without using the schema name.

One simple way to do this uses synonyms . In the schema you are connect to:

create synonym table for education.table;

Then you can use table where you would use education.table .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM