當前位置: 首頁>>代碼示例>>Python>>正文


Python sql_select.SqlSelect類代碼示例

本文整理匯總了Python中es_sql.sqlparse.sql_select.SqlSelect的典型用法代碼示例。如果您正苦於以下問題:Python SqlSelect類的具體用法?Python SqlSelect怎麽用?Python SqlSelect使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了SqlSelect類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_group_by_case_when

 def test_group_by_case_when(self):
     sql_select = SqlSelect.parse(
         "SELECT * FROM symbol GROUP BY CASE WHEN price > 10 THEN 'high' ELSE 'low' END AS hl")
     self.assertEqual(['hl'], sql_select.group_by.keys())
     self.assertEqual(stypes.Case, type(sql_select.group_by['hl']))
     sql_select = SqlSelect.parse(
         "SELECT * FROM symbol GROUP BY ( CASE WHEN price > 10 THEN 'high' ELSE 'low' END) AS hl")
     self.assertEqual(['hl'], sql_select.group_by.keys())
     self.assertEqual(stypes.Case, type(sql_select.group_by['hl']))
開發者ID:saki-saki,項目名稱:es-monitor,代碼行數:9,代碼來源:sql_select_test.py

示例2: test_is

 def test_is(self):
     sql_select = SqlSelect.parse("SELECT * FROM symbol WHERE a IS NULL")
     comparison = sql_select.where.tokens[-1]
     self.assertEqual(stypes.Comparison, type(comparison))
     self.assertEqual("IS", comparison.operator)
     self.assertEqual("a", str(comparison.left))
     self.assertEqual("NULL", str(comparison.right))
開發者ID:yangyinchun,項目名稱:es-monitor,代碼行數:7,代碼來源:sql_select_test.py

示例3: test_is_not

 def test_is_not(self):
     sql_select = SqlSelect.parse('SELECT * FROM symbol WHERE a IS  NOT NULL')
     comparison = sql_select.where.tokens[-1]
     self.assertEqual(stypes.Comparison, type(comparison))
     self.assertEqual('IS  NOT', comparison.operator)
     self.assertEqual('a', str(comparison.left))
     self.assertEqual('NULL', str(comparison.right))
開發者ID:saki-saki,項目名稱:es-monitor,代碼行數:7,代碼來源:sql_select_test.py

示例4: test_bigger_than

 def test_bigger_than(self):
     sql_select = SqlSelect.parse("SELECT * FROM symbol HAVING a > 0 ORDER BY name")
     comparison = sql_select.having[-2]
     self.assertEqual(stypes.Comparison, type(comparison))
     self.assertEqual(">", comparison.operator)
     self.assertEqual("a", str(comparison.left))
     self.assertEqual("0", str(comparison.right))
開發者ID:yangyinchun,項目名稱:es-monitor,代碼行數:7,代碼來源:sql_select_test.py

示例5: test_bigger_than_function_expression

 def test_bigger_than_function_expression(self):
     sql_select = SqlSelect.parse("SELECT * FROM symbol WHERE a > now() - INTERVAL '5 DAYS'")
     comparison = sql_select.where.tokens[-1]
     self.assertEqual(stypes.Comparison, type(comparison))
     self.assertEqual(">", comparison.operator)
     self.assertEqual("a", str(comparison.left))
     self.assertEqual("now() - eval_datetime('INTERVAL', '5 DAYS')", str(comparison.right))
開發者ID:yangyinchun,項目名稱:es-monitor,代碼行數:7,代碼來源:sql_select_test.py

示例6: test_support_now_and_interval

 def test_support_now_and_interval(self):
     datetime_evaluator.NOW = datetime.datetime(2015, 1, 2)
     sql_select = SqlSelect.parse(
         "SELECT * FROM index('symbol-%Y-%m-%d', now()-interval('1 days'), timestamp('2015-01-03 00:00:00')) "
         "AS my_table GROUP BY name"
     )
     self.assertEqual("symbol-2015-01-01,symbol-2015-01-02,symbol-2015-01-03", sql_select.from_indices)
開發者ID:yangyinchun,項目名稱:es-monitor,代碼行數:7,代碼來源:sql_select_test.py

示例7: test_in

 def test_in(self):
     sql_select = SqlSelect.parse("SELECT * FROM symbol WHERE symbol IN ('AAPL', 'GOOG')")
     comparison = sql_select.where.tokens[-1]
     self.assertEqual(stypes.Comparison, type(comparison))
     self.assertEqual("IN", comparison.operator)
     self.assertEqual("symbol", str(comparison.left))
     self.assertEqual("('AAPL', 'GOOG')", str(comparison.right))
開發者ID:yangyinchun,項目名稱:es-monitor,代碼行數:7,代碼來源:sql_select_test.py

示例8: test_not_in

 def test_not_in(self):
     sql_select = SqlSelect.parse("SELECT * FROM symbol WHERE a NOT IN (1,2,3)")
     comparison = sql_select.where.tokens[-1]
     self.assertEqual(stypes.Comparison, type(comparison))
     self.assertEqual("NOT IN", comparison.operator)
     self.assertEqual("a", str(comparison.left))
     self.assertEqual("(1,2,3)", str(comparison.right))
開發者ID:yangyinchun,項目名稱:es-monitor,代碼行數:7,代碼來源:sql_select_test.py

示例9: test_not_like

 def test_not_like(self):
     sql_select = SqlSelect.parse("SELECT * FROM symbol WHERE a NOT LIKE 'abc%'")
     comparison = sql_select.where.tokens[-1]
     self.assertEqual(stypes.Comparison, type(comparison))
     self.assertEqual("NOT LIKE", comparison.operator)
     self.assertEqual("a", str(comparison.left))
     self.assertEqual("'abc%'", str(comparison.right))
開發者ID:yangyinchun,項目名稱:es-monitor,代碼行數:7,代碼來源:sql_select_test.py

示例10: test_in

 def test_in(self):
     sql_select = SqlSelect.parse('SELECT * FROM symbol WHERE a IN (1,2,3)')
     comparison = sql_select.where.tokens[-1]
     self.assertEqual(stypes.Comparison, type(comparison))
     self.assertEqual('IN', comparison.operator)
     self.assertEqual('a', str(comparison.left))
     self.assertEqual('(1,2,3)', str(comparison.right))
開發者ID:saki-saki,項目名稱:es-monitor,代碼行數:7,代碼來源:sql_select_test.py

示例11: test_parameter

 def test_parameter(self):
     sql_select = SqlSelect.parse("SELECT * FROM symbol WHERE a = %(param)s")
     comparison = sql_select.where.tokens[-1]
     self.assertEqual(stypes.Comparison, type(comparison))
     self.assertEqual("=", comparison.operator)
     self.assertEqual("a", str(comparison.left))
     self.assertEqual("%(param)s", str(comparison.right))
     self.assertEqual(ttypes.Name.Placeholder, comparison.right.ttype)
開發者ID:yangyinchun,項目名稱:es-monitor,代碼行數:8,代碼來源:sql_select_test.py

示例12: test_where_should_not_be_part_of_join_condition

    def test_where_should_not_be_part_of_join_condition(self):
        sql_select = SqlSelect.parse(
            """select  phone from cn_tag_data_info_es
join base_info on  cn_tag_data_info_es.phone = base_info.phone
where cn_tag_data_info_es.date_str='2016-07-07'
group by phone
            """)
        self.assertIsNotNone(sql_select.where)
開發者ID:saki-saki,項目名稱:es-monitor,代碼行數:8,代碼來源:sql_select_test.py

示例13: test_projection_is_wildcard

 def test_projection_is_wildcard(self):
     sql_select = SqlSelect.parse("SELECT * FROM symbol")
     self.assertEqual(["*"], sql_select.projections.keys())
     self.assertEqual(ttypes.Wildcard, sql_select.projections["*"].ttype)
     self.assertIsNone(sql_select.where)
     self.assertEqual(dict(), sql_select.group_by)
     self.assertEqual([], sql_select.order_by)
     self.assertEqual([], sql_select.having)
     self.assertIsNone(sql_select.limit)
開發者ID:yangyinchun,項目名稱:es-monitor,代碼行數:9,代碼來源:sql_select_test.py

示例14: test_projection_is_expression_without_function

 def test_projection_is_expression_without_function(self):
     sql_select = SqlSelect.parse("SELECT a/2 AS abc FROM symbol")
     self.assertEqual(["abc"], sql_select.projections.keys())
     self.assertEqual(stypes.Expression, type(sql_select.projections["abc"]))
     self.assertEqual("a/2", str(sql_select.projections["abc"]))
     self.assertIsNone(sql_select.where)
     self.assertEqual(dict(), sql_select.group_by)
     self.assertEqual([], sql_select.order_by)
     self.assertEqual([], sql_select.having)
     self.assertIsNone(sql_select.limit)
開發者ID:yangyinchun,項目名稱:es-monitor,代碼行數:10,代碼來源:sql_select_test.py

示例15: test_group_by_and_having

    def test_group_by_and_having(self):
        sql_select = SqlSelect.parse(
            """SELECT phone, sum(cr_car_xiangqing_count) as total_count
  FROM cn_tag_data_info_es
      JOIN base_info ON cn_tag_data_info_es.phone = base_info.phone
 WHERE date_str >= "2016-05-01" and date_str <= "2016-05-03"
 GROUP BY phone
 HAVING total_count > 9""")
        self.assertIsNotNone(sql_select.where)
        self.assertIsNotNone(sql_select.having)
開發者ID:saki-saki,項目名稱:es-monitor,代碼行數:10,代碼來源:sql_select_test.py


注:本文中的es_sql.sqlparse.sql_select.SqlSelect類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。