|
Database Home
Database TutorialWhat is a Database?Database Management Systems Creating a Database About Database Tables Creating Database Tables Adding Data to a Database Querying a Database Relational Database Design Database Driven Website Summary Got a MySpace Page?Get "www.yourname.com" for your MySpace page. Learn how >>. |
Creating Database TablesWith database management systems, you need to create your tables before you can enter data. Just as you can create a database programatically, you can create your tables programatically too. Option 1: ProgramaticallyThe following is an example of creating a new table. Note that we are specifying the name of the table, the name of each column, and the data type of each column. More parameters can be added to this example if your requirements are more specific.
Option 2: User InterfaceDatabase management systems usually have a "Design View" for creating tables. Design view enables you to create the names of each column, specify the type of data that can go into each column, as well as specifying any other restrictions you'd like to enforce. Restricting the data type for each column is very important and helps maintain data integrity. For example, it can prevent us from accidentally entering an email address into a field for storing the current date. More parameters can be added against each column if you require them. For example, you could specify a default value to be used (in case the field has been left blank by the user). When you create a table via the user interface (or design view), depending on which database system you use, you should see something like this:
Once you've created your table in "design view", you can switch to "datasheet view" to see the resulting table. You should see something like this:
OK, so this is a blank table - it doesn't have any data yet. What we have is a table that contains the columns required before we can enter any data. So, now that we have a blank table, let's look at how to add data. Enjoy this website?
Oh, and thank you for supporting Quackit! |
FREE Hosting!With every domain name you register with ZappyHost, you get FREE (ad supported) hosting.PLUS you get:
Featured Template:
(Build your websites in minutes!) |