I have a table in MYSQL holding the messages in a message system. My table is :
messages(from_id, message, date, hash)
I know that a table can hold a certain number of records. What can I do if my table holding my messages is full? Can I create a new table like that I already have and start moving the next messages to it? Any ideas how can I do this? Thanks