DBHawk Tutorials
This section contains the features and various tutorials to show how to do various database tasks with DBHawk
SQL Server Create Table using DBHawk
DBHawk allows users to visually create tables and other objects in a SQL Server database.
Following tutorial shows how to create a table.
To create a SQL Server table, SQL Syntax is:
CREATE TABLE table_name
(
column1 datatype [ NULL | NOT NULL ],
column2 datatype [ NULL | NOT NULL ],
…
);
For detailed SQL Server Create Table syntax, visit SQL SERVER CREATE TABLE (Transact-SQL)