Hi everybody,

I m stuck with a query about telephone number :
I want to find in my database all the contact who have a telephone number.
The difficulty is that some number in the database can have space or .
between numbers
example : 06.06.50.44.11 or 45 87 12 45 65

This my query with like but it s not what i want because i ignore telephone
number who have special chars

NumeroApparu = "0645444444"
s = session.query(Contact.IdContact, Contact.Civilite, Contact.Nom,
Contact.Prenom,
ContactTel.Tel).filter(ContactTel.IdContact==Contact.IdContact).filter(Contact.IdDossier==self.dossierPourChargement.IdDossier).filter(ContactTel.Tel.like(NumeroApparu))

i saw *class 
*sqlalchemy.sql.expression.ColumnOperators¶<http://www.sqlalchemy.org/docs/05/reference/sqlalchemy/expressions.html?highlight=like#sqlalchemy.sql.expression.ColumnOperators>in
the doc but lack of explication...

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to