I need to bring in data from 3 different views into my results.
View A has almost all the data I need but it uses primary keys for two fields and I need to pull in the identifiers from the UI so it looks like this:
View A:
PortfolioID,
SecurityID,
then 20 other points I need
View B:
PortfolioID,
PortfolioCode,
View C: SecurityID, Symbol
I need to select all the data from View A but instead of PortolioID I need the corresponding PortfolioCode from View B and instead of SecurityID I need the corresponding symbol from View C.
Sorry if this is very basic, I'm a complete newby to SQL.
Thanks!