本文整理汇总了Python中pypika.Query.update方法的典型用法代码示例。如果您正苦于以下问题:Python Query.update方法的具体用法?Python Query.update怎么用?Python Query.update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pypika.Query
的用法示例。
在下文中一共展示了Query.update方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_join_table_on_update_query
# 需要导入模块: from pypika import Query [as 别名]
# 或者: from pypika.Query import update [as 别名]
def test_join_table_on_update_query(self):
a, b = Tables('a', 'b')
q = Query.update(a) \
.join(b).on(a.fkey_id == b.id) \
.where(b.foo == 1) \
.set('adwords_batch_job_id', 1)
self.assertEqual('UPDATE "a" '
'JOIN "b" '
'ON "a"."fkey_id"="b"."id" '
'SET "adwords_batch_job_id"=1 '
'WHERE "b"."foo"=1', str(q))
示例2: test_update_with_join
# 需要导入模块: from pypika import Query [as 别名]
# 或者: from pypika.Query import update [as 别名]
def test_update_with_join(self):
q = Query.update(self.table_abc).join(self.table_def).on(self.table_def.abc_id == self.table_abc.id).set(self.table_abc.lname, self.table_def.lname)
self.assertEqual('UPDATE "abc" JOIN "def" ON "def"."abc_id"="abc"."id" SET "abc"."lname"="def"."lname"', str(q))
示例3: test_update_with_none
# 需要导入模块: from pypika import Query [as 别名]
# 或者: from pypika.Query import update [as 别名]
def test_update_with_none(self):
q = Query.update('abc').set('foo', None)
self.assertEqual('UPDATE "abc" SET "foo"=null', str(q))
示例4: test_update__table_schema
# 需要导入模块: from pypika import Query [as 别名]
# 或者: from pypika.Query import update [as 别名]
def test_update__table_schema(self):
table = Table('abc', 'schema1')
q = Query.update(table).set(table.foo, 1).where(table.foo == 0)
self.assertEqual('UPDATE "schema1"."abc" SET "foo"=1 WHERE "foo"=0', str(q))
示例5: test_single_quote_escape_in_set
# 需要导入模块: from pypika import Query [as 别名]
# 或者: from pypika.Query import update [as 别名]
def test_single_quote_escape_in_set(self):
q = Query.update(self.table_abc).set('foo', "bar'foo")
self.assertEqual('UPDATE "abc" SET "foo"=\'bar\'\'foo\'', str(q))
示例6: test_omit_where
# 需要导入模块: from pypika import Query [as 别名]
# 或者: from pypika.Query import update [as 别名]
def test_omit_where(self):
q = Query.update(self.table_abc).set('foo', 'bar')
self.assertEqual('UPDATE "abc" SET "foo"=\'bar\'', str(q))
示例7: test_empty_query
# 需要导入模块: from pypika import Query [as 别名]
# 或者: from pypika.Query import update [as 别名]
def test_empty_query(self):
q = Query.update('abc')
self.assertEqual('', str(q))