Insert with subselect

Hi,

I want to execute a query as follow:

INSERT INTO table1 (

      field1_pk, 

      field2, 

      field3) 

values (

      ‘value1’, 

      ‘value2’, 

       (select field2 from table2 where field1_pk = ‘PIPPO’) 

)

It is possible with Liquibase without tag ?

Thanks in advance