M
Michael Hetrick
I need to generate a report from a table that may or may not have data in 4
columns and order by those 4 columns at once.
ID | Col1 | Col 2 | Col3 | Col4 | Title
1 | 4 | | | | some text
2 | | 2 | | | some text
3 | | | | | some text
4 | 9 | | | | some text
5 | | | 7 | | some text
The report should look like this:
Col | Title
2 | some text
4 | some text
7 | some text
9 | some text
I know that this would be easier in a relational table structure, but it
isn't an option to design the tables correctly at this time. The final
output will be displayed in a web page. Any assistance would be
appreciated!
Thanks -
Michael
columns and order by those 4 columns at once.
ID | Col1 | Col 2 | Col3 | Col4 | Title
1 | 4 | | | | some text
2 | | 2 | | | some text
3 | | | | | some text
4 | 9 | | | | some text
5 | | | 7 | | some text
The report should look like this:
Col | Title
2 | some text
4 | some text
7 | some text
9 | some text
I know that this would be easier in a relational table structure, but it
isn't an option to design the tables correctly at this time. The final
output will be displayed in a web page. Any assistance would be
appreciated!
Thanks -
Michael