Hi ,
I am trying to fetch multiple column from a table here is my code
for row in result_set:
        db += [(row ['chr'],str(row[ 'user_id' ]), False),]
i want to concatenate 'start' column and 'end' column with this output , how can i do that
thanks