I am trying to write a query for a msaccess database which I did not write and it is not designed well at all.
Most of the data that I need is in a single table with the columns "name" and "value".
For example
rpt---------Name----------------Value
1-----------Processor------------1000mhz
1-----------Memory--------------512mb
1-----------OS-------------------Windows 2000 Professional
2-----------Processor------------800mhz
2-----------Memory--------------256mb
2-----------OS-------------------Windows 2000 Professional
I am trying to pull only certian values but need multiple ones. Is there a way to pull for example both the processor and memory in the same sql statment and have them be listed as columns rather than seperate rows?
I think I can probably do it with a scripting language and multiple queries, just wondering if there is a way to get the info in one sql statement.
Also I have used PL/SQL before in oracle. Is it possible to do any scripting like this in access?