my query is showing in row 2000 the data of 2000-2001 & in 2001 the data of 2001-2002.
how can i change the column so that it displayes
column 1 column 2
2000-2001 5
2001-2002 3
2002-2003 9
2003-2004 12
.
.
.
.
and so on…
Without seeing your query this will have to be very generic, but something like the following should work:
The above is Oracle syntax (the TO_CHAR and || string concatenations) but should give you a good idea of how to proceed.
EDIT: In SQL Server try the following:
Share and enjoy.