Example #1
0
 def __init__(self, table, column):
     SQL.__init__(self, '%s.%s' % (table, column))
Example #2
0
 def __init__(self, table, column):
     SQL.__init__(self, '%s.%s' % (table, column))
Example #3
0
 def __init__(self, expr):
     expr = '%({})s'.format(expr)
     SQL.__init__(self, expr)