I have a table with 3 fields. These fields contain duplicate entries for two of the fields. This SQL statement produces these results.
SELECT * FROM MULTCLAS WHERE TICKER = 'TLP'
TLP XZ PRT
TLP XZ SHL
What I want is an sql query that procudes:
TPL XZ PRT SHL
Any help would be appreciated..
SELECT * FROM MULTCLAS WHERE TICKER = 'TLP'
TLP XZ PRT
TLP XZ SHL
What I want is an sql query that procudes:
TPL XZ PRT SHL
Any help would be appreciated..