hello
i have a table called test. This is the table,
test_id test_date test_description
1 1/1/2001 test1
2 2/1/2001 test2
3 3/1/2001 test3
I want to get the results like this,
test_id 1 2 3
test_date 1/1/2001 2/1/2001 3/1/2001
test_description test1 test2 test3
How can i do that? Thank you.
i have a table called test. This is the table,
test_id test_date test_description
1 1/1/2001 test1
2 2/1/2001 test2
3 3/1/2001 test3
I want to get the results like this,
test_id 1 2 3
test_date 1/1/2001 2/1/2001 3/1/2001
test_description test1 test2 test3
How can i do that? Thank you.