0% found this document useful (0 votes)
46 views1 page

Default Exp Acct

The document contains a SQL query that retrieves all records from the GL_CODE_COMBINATIONS table. It filters the results based on code_combination_id, which must match distinct default_Code_comb_id values from the per_all_assignments_m table. The person_id is further filtered by matching it with person_number '81W572J86' from the per_all_people_f table.

Uploaded by

Ibbu Mohd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
46 views1 page

Default Exp Acct

The document contains a SQL query that retrieves all records from the GL_CODE_COMBINATIONS table. It filters the results based on code_combination_id, which must match distinct default_Code_comb_id values from the per_all_assignments_m table. The person_id is further filtered by matching it with person_number '81W572J86' from the per_all_people_f table.

Uploaded by

Ibbu Mohd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

select * from GL_CODE_COMBINATIONS

where code_combination_id in (select


distinct default_Code_comb_id from per_all_assignments_m
where person_id in
(select person_id from per_all_people_f
where person_number like '81W572J86'))

You might also like