How to create a table in a particular database?

Posted by liuxingruo on Stack Overflow See other posts from Stack Overflow or by liuxingruo
Published on 2010-05-01T12:00:59Z Indexed on 2010/05/01 12:07 UTC
Read the original article Hit count: 231

Filed under:
|
|
|

The create database statement is:

CREATE TABLE table_name ( column_name1 data_type, column_name2 data_type, column_name3 data_type, .... )

but, I'm wondering how can I create a table in a specific database?

thanks, guys!

© Stack Overflow or respective owner

Related posts about mysql

Related posts about create