|
Main Menu
Resources
|
SQL CREATE TABLE
Once the database already created, the next step will be defining the tables.Tables are like a basic building block of the database. Tables hold rows and columns of your data. SQL CREATE TABLE command is use for this. SQL CREATE TABLE command need to complete with some contraints. That means when you create a table, you need to plan step by step. Some are the procedure you really need to take care of, which is: 1) Name it
The SQL command is: CREATE TABLE [TABLE NAME]
Create the table name GameScores. SQL Statement: CREATE TABLE GameScores
|

Printer friendly page