S 
		
								
				
				
			
		samuel
I have a basic query on a table
SELECT Mnemonic, Name, Type
from tbl1
I want to be able to display the row number within the query where the
result would be
1 AB NAME1 TYPE1
2 BC NAME2 TYPE2
How do I accomplish this?
				
			SELECT Mnemonic, Name, Type
from tbl1
I want to be able to display the row number within the query where the
result would be
1 AB NAME1 TYPE1
2 BC NAME2 TYPE2
How do I accomplish this?
