Use the create table statement to create a practice table. If you do not have create table permission, see a system administrator or the owner of the database in which you are working.
You can create a table, input some data, and work with it for a while before you create indexes, defaults, rules, triggers, or views. This allows you to see what kind of transactions are most common and what kind of data is frequently entered.
However, it is more efficient to design a table and the components that go with it at the same time. You might find it easiest to sketch your plans on paper before you actually create a table and its accompanying objects.
Create the table and its indexes using create table and create index.
Create defaults and rules using create default and create rule.
Bind any defaults and rules using sp_bindefault and sp_bindrule. Any existing defaults or rules on a user-defined datatype already used in a create table statement, are automatically used.
Create triggers using create trigger.
Create views using create view.