Actually processed_seq refers to a list of strings in plugin_seq table and in primer_seq it has list of substrings . I want find all the substrings in the list which are in processed_seq field of plugin_seq table .I had written the code when I have single substring but I am unable to implement this a list of substrings when I load them in database.
On Sat, Oct 20, 2012 at 8:54 PM, villas <[email protected]> wrote: > I do not think that your problem is clearly defined enough for anyone to > answer. > Do you perhaps mean the max processed_seq in each table? > > > > > On Saturday, October 20, 2012 10:53:28 AM UTC+1, praveen krishna wrote: >> >> Hii, >> I have two tables >> db.define_table('plugin_seq', >> Field('filename',readable=**False,writable=False), >> Field('raw_seq','text'), >> Field('processed_seq', 'text'), >> Field('reverse_seq','text') >> >> ) >> db.define_table('primer_seq',**Field('filename',readable=** >> False,writable=False), >> Field('raw_seq','text'), >> Field('processed_seq', 'text'), >> ) >> >> >> >> I want to compare the processed_seq field in the two tables what can be >> possible approach I have tried by creating two forms for each table but its >> not working. >> > -- > > > > --

