Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、TABLE1 に "id" と "count" という 2 つの列があり、"count" 列に数値が含まれている場合、それらの数値が 50 以上に達すると、トリガーで TABLE2 の "reached" という列を " yes" とその ID を id 列に
どうすればそれができますか?ありがとう
delimiter | CREATE TRIGGER table1_trigger AFTER UPDATE ON table1 FOR EACH ROW BEGIN IF NEW.count >= 50 then update table2 set reached = 'yes' where id = NEW.id; end if; END; |