Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Query Filters

Status
Not open for further replies.

Freefall27

Technical User
Sep 8, 2005
65
0
0
US
I am using Crystal XI and getting data through an ODBC connection to Oracle DB.

This is the SQL equivalent in Access of what I want to do in Crystal.

select circ_path_hum_id, status, bandwidth, A_side_site_name, Z_side_site_name, ELEM_COST from path_view
where circ_path_inst_id not in ( Select distinct c.circ_path_inst_id from circ_path_element c, circ_path_inst c1
where c.circ_path_inst_id = c1.circ_path_inst_id
and c1.bandwidth = 'TRUNK GROUP'
and c.element_Type = 'P')
and bandwidth = 'TRUNK GROUP'


I need help on how to have a select query in the filter section while building crystal report.

Your help is greatly appreciated
 
Try copying your query into a command and use that as your datasource (database->database expert->your datasource->add command).

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top