CREATE TABLE 'NewTableName' SELECT * FROM 'OtherTableName'
This works for copying data and MOST structure, but I noticed that it DOESN'T copy structure as far as which fields are primary keys, and auto-increments.. anyway to do this? Its rather important.
P.S. - I'd like to avoid using mysqldump if at all possable.