I want to extract all the attributes of a single column in a table .The column name is processed sequence .I tried with the above code but its not working .
On Tue, Jun 12, 2012 at 3:37 PM, Anthony <[email protected]> wrote: > for record in records: >> record = db(db.plugin_seq.processed_**seq).select() >> > > Can you explain the above code? You are repeating the same query every > pass through the for loop (the query returns all records that have a value > for processed_seq). You then end up with the "record" variable being > assigned to the set of Rows returned by that query (not to a single > record). What are you trying to do there? > > Anthony >

