Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

select from 3 tabs

Former Member
0 Likes
512

hi,

hw to fetch records of 3 tables without using join stmt. and with one SELECT stmt.

thanks,

hi,

hw to fetch records of 3 tables without using join stmt. and with one SELECT stmt.

thanks,

3 REPLIES 3
Read only

Former Member
0 Likes
483

Look for any views available for the three tables.

Cheers,

KD

Read only

Former Member
0 Likes
483

create a view , then you can use single slect to fetch .

Read only

former_member156446
Active Contributor
0 Likes
483

A database View can be created using all the primary keys of all the three tables and fetch data in One select statement.