select count(*) from ucr_act8.tf_oh_cust_special_list @cbss_dgact8_xx a , ucr_cbss_kafuka_new.tf_bh_trade b, where a.user_id=b.user_id and b.in_mode_code = 'M' and a.province_code = '90' and a.START_DATE between to_date('2023-01-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss') and to_date('2023-06-02 23:59:59', 'yyyy-mm-dd hh24:mi:ss')
时间: 2024-03-05 09:49:05 浏览: 59
UCR_TS_Archive_2015.rar
有两个语法错误需要修正:
1. 在 `ucr_act8.tf_oh_cust_special_list @cbss_dgact8_xx a` 后面的逗号应该删掉。
2. 在 `ucr_cbss_kafuka_new.tf_bh_trade b, where` 中间多了一个逗号,应该改为 `ucr_cbss_kafuka_new.tf_bh_trade b where`。
修改后的 SQL 语句如下:
```
select count(*) from ucr_act8.tf_oh_cust_special_list@cbss_dgact8_xx a, ucr_cbss_kafuka_new.tf_bh_trade b where a.user_id = b.user_id and b.in_mode_code = 'M' and a.province_code = '90' and a.START_DATE between to_date('2023-01-01 00:00:00', 'yyyy-mm-dd hh24:mi:ss') and to_date('2023-06-02 23:59:59', 'yyyy-mm-dd hh24:mi:ss')
```
请注意,这只是一种可能的修改方式,具体的修改方式可能因不同的数据库而异。
阅读全文