You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
解析出来的sql有问题,是我写法错误吗?
SELECT id,site_id,keyword FROM serp_keywords A WHERE NOT EXISTS (SELECT B.id FROM serp_keywords_cron B WHERE (B.keyword_id='A.id') AND (B.created_time>='2024-11-14 00:00:00') AND (B.created_time<='2024-11-14 23:59:59')) LIMIT 1
B.keyword_id='A.id'这个解析不能正确处理
The text was updated successfully, but these errors were encountered:
What do you want to ask?
解析出来的sql有问题,是我写法错误吗?
SELECT
id
,site_id
,keyword
FROMserp_keywords
A WHERE NOT EXISTS (SELECT B.id FROMserp_keywords_cron
B WHERE (B
.keyword_id
='A.id') AND (B.created_time>='2024-11-14 00:00:00') AND (B.created_time<='2024-11-14 23:59:59')) LIMIT 1B
.keyword_id
='A.id'这个解析不能正确处理The text was updated successfully, but these errors were encountered: