Created
August 21, 2014 15:23
-
-
Save rixx/75dbecd1465721551ee2 to your computer and use it in GitHub Desktop.
where01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if not where: | |
select.where = joinList[tablename].right.__getattr__(column) == operand | |
else: | |
select.where &= joinList[tablename].right.__getattr__(column) == operand | |
where = True | |
----- | |
passender_variablenname = joinList[tablename].right.__getattr__(column) == operand | |
select.where = passender_variablenname if where is False else passender_variablenname & select.where | |
where = True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment