Skip to content
Snippets Groups Projects
Commit 0ec45bc5 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

product: added full qualifiers for table and columns

parent 72b2d914
No related branches found
No related tags found
No related merge requests found
import("system.result");
result.string("PRODUCT left join RELATION on RELATIONID = RELATION_ID \n\
left join ORG on ORGID = ORG_ID left join PERS on PERSID = PERS_ID");
\ No newline at end of file
result.string("PRODUCT left join RELATION on RELATION.RELATIONID = PRODUCT.RELATION_ID \n\
left join ORG on ORG.ORGID = RELATION.ORG_ID left join PERS on PERS.PERSID = RELATION.PERS_ID");
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment