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';