How to untar multiple tar zipped files using cat

The db backup program I used split the backup files into multiple tar gzipped files

mysql-backup.tar.gz.part01
mysql-backup.tar.gz.part02
mysql-backup.tar.gz.part03

here is how to unzip them

cat mysql-backup-tar.gz.part* | tar -xzvf -