サブクエリを使用してクエリを実行し、最初のクエリの1 つの列 () 内でサブクエリの結果を取得することは可能DropDownList style
ですか?
Select Name, Year, (Select SchoolId from Schools) from SchoolRecords
Output :
-------------------------- List would be a DropDownList and if I open it I would get
| Name | Year | SchoolId | the results of my subquery like so :
| | | |
-------------------------- ------------------
| Jim | 2011 | List || | | || |
| | | \/ | | \/ |
-------------------------- ------------------
| Tom | 2012 | List || | | 012312324 |
| | | \/ | | 123245465 |
-------------------------- | 456547787 |
------------------