Online computer courses, code, programming tutorial and sidebar information for monitoring Canadian S&P/TSX index. Build friendship and networking. Welcome to visit my blogs often!!! I also have two other sites: YouTube Channel and Google site.
Adsense
Popular Posts
- PHP: add a download as pdf file button in report page
- Formatting my post
- How to blend adsense inside your post?
- PHPWind-- A PHP forum script applcaition in China
- Promote your Forum/Blog/Website via major search Engines
- Google Adsense forum and pin number
- ActionScript 3.0 demo: create a falling snow in flash CS6
- phpexcel toggle expand and hide column in EXCEL and summary
- Wayback Machine - see archived versions of web pages across time
- Datatable export excel wraptext and newline
Saturday, April 6, 2013
Copy table in MySQL, change table name in MySQL
To copy a table in MySQL, for example copy table users to new_users.
First we create an empty table new_users with the same structure as users
create table new_users like users;
Then we insert new_users withe same content from users
INSERT new_users SELECT * FROM users;
To change table name in MySQL, for example new_users to new_users1
RENAME TABLE new_users TO new_users1;
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment