I, I want to handle this select statement as follow:
select
col1,
col2 from table
This select statement return 2 lines:
col1 col2
---- ----
BasketBall 2 points
BasketBall 3 points
Now, i want to use a simple select statement to give me one single row, like this:
col1 col2 col2´
---- ----- ------
BasketBall 2 points 3 points
It's just an example that what i need to SQL do...
Thank's a lot for your help...
select
col1,
col2 from table
This select statement return 2 lines:
col1 col2
---- ----
BasketBall 2 points
BasketBall 3 points
Now, i want to use a simple select statement to give me one single row, like this:
col1 col2 col2´
---- ----- ------
BasketBall 2 points 3 points
It's just an example that what i need to SQL do...
Thank's a lot for your help...