我有两个简单的表,parent_table和child_table,但是我花了几天的时间来搜索正确的语法查询,但是我找不到一种方法来满足以下两个简单的要求:
create table if not exists parent_table (id int no null primary key, lastContactTimestamp bigint);
create table if not exists child_table (id int, timestamp bigint, data json, foreign key(id) references(parent_table(id) on delete cascade on update cascade);
(1)要求:更新child_table,还更新parent_table lastContactTimestamp:
如果(更新child_table)更新parent_table设置lastContactTimestamp = timestamp_now;