select * from table3;
It will show full table data
It will show full table data
===================================================================
truncate table table3;
truncate table table3;
select * from table3;
After Truncate , it will show only table structure only , no data.