[RESOLVED] Access: Multiple Select through 1 select statement
View post #4
I am not exactly sure how to explain this, but here is what I want to do:
I have a table, with a layout as follows
SplitNumber ID Course1 SD1 ED1 Course2 SD2 ED2...
up until 15
Now, I want to run a query to take that row, and place it into another table in the following layout
Course SD ED
Course2 SD ED
Course3 SD ED
up until 15
I have tried thinking of ways to do it with a query, but have run short. And I cant seem to find any reference to this sort of problem in any of the books I have.
If anyone could even point me in the right direction with some keywords to search or anything I would greatly appreciate it.
Re: Access: Multiple Select through 1 select statement
Selecting multiple columns..
"SELECT Course" & lstSplit.Value & ", SD" & lstSplit.Value & ", ED" & lstSplit.Value & " FROM Splits WHERE ID = " & "'" & ID.Text & "'"
Re: Access: Multiple Select through 1 select statement
Much obliged, although I can't rep you yet :(
Re: [RESOLVED] Access: Multiple Select through 1 select statement