|
- 2016-12-25 10:31:35 select base_supplier:SELECT
- id,
- supplier_name,
- area_id,
- is_disabled,
- supplier_type
- FROM
- base_supplier a
- WHERE
- cancel_flag = 0
-
- AND supplier_type = 187
- LIMIT 0,10
- 2016-12-25 10:31:35 count:SELECT
- a.id
- FROM
- base_supplier AS a,
- base_supplier_purchase AS b
- WHERE
- a.id = b.supplier_id
-
- AND a.cancel_flag = 0
- AND b.cancel_flag = 0
- GROUP BY
- b.supplier_id
- 2016-12-25 10:31:35 select base_area:SELECT
- id,
- area_name
- FROM
- base_area
- WHERE
- id in(923,803,792,1200,961)
- 2016-12-25 10:31:48 select base_supplier:SELECT
- id,
- supplier_name,
- area_id,
- is_disabled,
- supplier_type
- FROM
- base_supplier a
- WHERE
- cancel_flag = 0
- and a.supplier_name like '%%虹桥元一希尔顿%%'
- AND supplier_type = 187
- LIMIT 0,10
- 2016-12-25 10:31:48 count:SELECT
- a.id
- FROM
- base_supplier AS a,
- base_supplier_purchase AS b
- WHERE
- a.id = b.supplier_id
- and a.supplier_name like '%%虹桥元一希尔顿%%'
- AND a.cancel_flag = 0
- AND b.cancel_flag = 0
- GROUP BY
- b.supplier_id
- 2016-12-25 10:31:48 select base_area:SELECT
- id,
- area_name
- FROM
- base_area
- WHERE
- id in(800)
|