MySQL to Liquibase

Hello, is there a way to do the following in Liquibase ? (update with inner join in it)


  1. /* Récupération du type élément SUIVI */
  2. SET @idTYPESUIVI = (SELECT idTYPEELEMENT FROM mv_typeElement WHERE valeur LIKE 'SUIVI' LIMIT 1);

  3. /* Mise à jour des warnings vu et non vu pour les patients sorties */
  4. UPDATE wrg_warning AS WRG 
  5. -- SELECT WRG.* FROM wrg_warning AS WRG 
  6. INNER JOIN wrg_typeWarning AS TW ON TW.idTYPEWARNING = WRG.idTYPEWARNING
  7. SEJOUR.dateSortieEffective != '0000-00-00 00:00:00';
thanks previously :)

Not with the tag, but you can use the tag and put that in directly


Nathan