How to create a table in a particular database?
- by liuxingruo
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!