createコマンドを使う。以下はtestdbというデータベースで実際に作成してみた例。
1> use testdb; 2> create table shain ( 3> no int, 4> name varchar, 5> weight float 6> ); 7> go データベース コンテキストが 'testdb' に変更されました。 1> select * from shain 2> go no name weight ----------- ---- ------------------------ (0 行処理されました)