MySQL笔记

复制表结构:

CREATE  TABLE IF NOT EXISTS tb_users_like (LIKE users); 

重命名:

rename table tb_users_like to table_123;

你可能感兴趣的:(MySQL笔记)