I have three tables
table_1_Top_Performers:
col_1_ID | col_2_FirstName | col_3_LastName
1 Johny Smith
2 John Que
3 Kristina Zimmerman
table_2_Mid_Performers:
col_1_ID | col_2_FirstName | col_3_LastName
1 Stewart Joe
2 Amy Green
3 John Smithsonian
table_3_Bottom_Performers:
col_1_ID | col_2_FirstName | col_3_LastName
1 Noah Cantana
2 Abe Jackson
3 Smith Markson
And I the output I'm looking for is this:
col_1_ID | col_2_FirstName | col_3_LastName
1 Noah Cantana
2 Abe Jackson
3 Smith Markson
1 Stewart Joe
2 Amy Green
3 John Smithsonian
1 Johny Smith
2 John Que
3 Kristina Zimmerman
Could these be achieved by a simple SQL statement? or even a PL/SQL call?