标签: mysql
我试图写查询超过一个小时,但仍然遇到一些语法错误,我需要从另一个表的最新记录更新第一个表特定的行 例如:
update table a, table b set a.date=b.max(date), a.column3=b.column4 where a.something=b.something and a.date=b.max(date)
我尝试使用max(),但没有任何意义,仍然无法有效使用组函数1111和e.t.c