create table address like sakila.address;
insert into address select * from sakila.address;;
UPDATE address
SET postal_code = '365894', last_update = CURRENT_TIMESTAMP
WHERE address = '1411 Lillydale Drive';
;
select
postal_code
from address
where address = '1411 Lillydale Drive';
show status like 'Last_query_cost';