Creating a Table





You can do almost any database task with SQL. You create a table using the Create Table SQL statement. The syntax of the Create Table statement is:
Create Table tableName (columnName 1, columnName2)
The table name should be a single string of alphanumeric characters. The column name list is a comma separated list that defines the column names, their data types, and constraints on the column. Column names may include spaces , if the name has spaces, surround it with single quotes.
Domain Name Search
|