On 2013-06-12, Tim Roberts <t...@probo.com> wrote:
> ???????? ?????? <nikos.gr...@gmail.com> wrote:
>>
>>[code]
>>              if not re.search( '=', name ) and not re.search( '=', month ) 
>> and not re.search( '=', year ):
>>                      cur.execute( '''SELECT * FROM works WHERE clientsID = 
>> (SELECT id FROM clients WHERE name = %s) and MONTH(lastvisit) = %s and 
>> YEAR(lastvisit) = %s ORDER BY lastvisit ASC''', (name, month, year) )
>>              elif not re.search( '=', month ) and not re.search( '=', year ):
>>                      cur.execute( '''SELECT * FROM works WHERE 
>> MONTH(lastvisit) = %s and YEAR(lastvisit) = %s ORDER BY lastvisit ASC''', 
>> (month, year) )
>>              elif not re.search( '=', year ):
>>                      cur.execute( '''SELECT * FROM works WHERE 
>> YEAR(lastvisit) = %s ORDER BY lastvisit ASC''', year )
>
> There is so much you didn't tell us here, including which database you are
> using.

Are you guys _still_ on Nikos hook?

[No, I don't really think he's trolling, but it would be really
impressive if he were.]

Anyway, I salute your patience.

-- 
Grant Edwards               grant.b.edwards        Yow! ... I'm IMAGINING a
                                  at               sensuous GIRAFFE, CAVORTING
                              gmail.com            in the BACK ROOM of a
                                                   KOSHER DELI --
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to