我是Android开发的新手。我想知道这是否可能。
我有这个表作为tab1
____________________________________________
| student ID| Name | Age | Gender |
|-----------|---------|----------|---------|
| 11111 | Student1| 11 | m |
------------|---------|----------|---------|
| 222222 | Student2| 22 | f |
------------|---------|----------|---------|
| 333333 | Student3| 33 | f |
------------|---------|----------|---------|
| 444444 | Student4| 44 | m |
--------------------------------------------
我想创建一个新表。但我想将表1中的行用作此新表中的列。
________________________________________________________________
| QuizID | Date | Items | Student1| Student2| Student3|
|-----------|---------|----------|---------|---------|---------|
| 00000001 | 10-1-14| 10 | 9 | 10 | 6 |
------------|---------|----------|---------|---------|---------|
| 00000002 | 10-2-14| 15 | 10 | 9 | 15 |
------------|---------|----------|---------|---------|---------|
| 00000003 | 10-3-14| 20 | 20 | 15 | 10 |
------------|---------|----------|---------|---------|---------|
| 00000004 | 10-4-14| 10 | 4 | 5 | 10 |
---------------------------------------------------------------
有可能吗?