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
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:
@chaegumi The second parameter of function Where is the value of the first parameter, like Where(key, value). You can use Where(gdb.Raw("B.keyword_id=A.id")) or Where("B.keyword_id", gdb.Raw("A.id")).
What do you want to ask?
解析出来的sql有问题,是我写法错误吗?
B
.keyword_id
='A.id'这个解析不能正确处理The text was updated successfully, but these errors were encountered: