Comprehensive Notes on Create and Edit tables Class 10

Dear Students, in this article we will discuss bout comprehensive notes on create and edit tables class 10. As per the syllabus of Information Technology class 10, Open Office base is preferred for creating tables for the Database Concepts.

Before starting to Create and Edit tables class 10 article I would recommend that We have already covered the basics of DBMS and RDBM. To read this click here.

So let us start Create and Edit tables class 10. So first you need to understand the parts of OO Base. So here we go!

Create and Edit tables class 10

After installation of Open Office 4.1.7, you will get applications like OO Writer, OO calc and OO Base. To work with database open OO Base. Follow these steps to do so:

Step 1: Click on Start Menu.

Step 2: Find Open Office 4.1.7 and click on it.

Step 3: Now select Open Office Base.

Comprehensive Notes on Create and Edit tables Class 10
How to start OO Base

Step 4: The database wizard will open to select or create a database.

If you are opening it first time select create a new database option and then follow the wizard instructions.

Comprehensive Notes on Create and Edit tables Class 10

If you have already created a database select open an existing database file option and follow the wizard instructions.

Open an existing database in OO Base in wizard
Open an existing database in OO Base in wizard

Now OO Base will open, the interface of OO Base is something like below-given screenshot:

Comprehensive Notes on Create and Edit tables Class 10

Now in the next section of Create and Edit tables class 10, we will discuss about the parts of OO base window.

As the main parts of OO Base window are highlighted with numbers. They are as following:

  1. Database Objects selection window
  2. Tasks Window
  3. Description Window
  4. Database Object window
  5. Properties window of selected Database objects

Database Objects Selection window

This windows allows to select the database objects and you can do work upon. There are four basic icons available in this window:

  1. Tables
  2. Queries
  3. Forms
  4. Reports

All of these we will discuss in upcoming sessions.

Tasks Window

This window allows selecting the specific tasks as per the selected object from the database object selection window. Here you will observe different tasks are available for different objects. But the common task is to create and use wizard.

Description Window

This windows shows the description of the selected task.

Database Object Window

It shows the different database objects created by user.

Properties window

It displays the information of selected object from database object window.

Now we will discuss, how to create table in OO Base for Create and Edit tables class 10.

Create a table

There are 3 ways to create a table in OO Base.

  1. Create Table in Design view
  2. Use wizard to create table
  3. Using SQL command

Prepare a table structure on paper before creating a table in OO Base, Because it will asks to select a primary key other constraints, so define a primary key and assign the column otherwise OO base will add one column named ID when you save the table with your confirmation.

If primary key is not there, OO base won’t allow to insert records in the table.

In next section of Create and Edit tables class 10, we will see all of these ways in detail.

Create table in Design View

Follow these steps to create a table in design view:

  1. Click on Tables –> Create Table in Design View option from the tasks window.
  2. It will open a design to view and allows you to write you table field names and data types as well as other properties of the field.
  3. Type appropriate field names, choose desired field types and type the description if necessary.
  4. Save the table and close the window.

Now once table is created, it will appear in the objects window. Double click to open it and add records you want by typing them.

Watch this video to understand it properly and comment your views on the video:

In next section of Create and Edit tables class 10 we will see how to create a table using wizard.

Use wizard to create table

The wizard allows to create a table from predefined sample tables with predefined fields. It is just like drag and drop type work where you have to choose the fields and other important things for your table. Follow these steps to create a table through wizard:

  1. Click on Table –> Use wizard to create table option from the tasks window.
  2. A wizard appears with the 4 basic steps:
    • Select fields:
      • This option displays two categories business & Personal. Choose the sample table from the Sample Tables dropdown.
      • Now select the required fields from the list of Available Fields.
      • Now click on Add button available with > sign or Add to all button with >> to select the all the available fields. You can remove the unwanted fields by clicking on remove < or remove all << button.
      • Click on Finish.
    • Set types and formats:
      • Select the field name to set types and formats.
      • Select appropriate types and formats for your fields and click on next.
    • Set primary key:
      • Select a field for a primary key to the table.
      • Select various options for the primary key.
      • Click on next.
    • Create Table:
      • This allows renaming the table and provides three options to work with the table. These options are – insert data immediately, Modify the table design, and create a form based on this table.
      • Click on Finish and start your work accordingly!!

The next section is very important for the topic Create and Edit tables class 10 because a fixed 2 marks question is coming to create table in board exam.

Create table using SQL commands

OO base also support SQL view to create a table. To work with SQL mode you need to install java jdk for proper command execution.

Download Java from here

Steps:

  1. Click on Tool –> SQL command. Execute SQL statement will open.
  2. Write following command to create table and click on Execute:
create table "Students" ("RNO" integer primary key,"Sname" varchar(20), "DOA" date)

In the next section of Create and Edit tables class 10 we will see very important points to be remembered while creating tables.

Points to be remembered:

  1. Follow these rules for giving names to your fields and table:
    • It must start with an alphabet
    • A special character should not use in names
    • It should not be a default keyword
  2. Enclose all the names like table and fields in double-quotes.
  3. You can type the command words into capital as most of the books suggesting to type commands in the capital, but it is not neccessary.

Watch this video for more details:

So here we conclude our topic Create and Edit tables class 10. I hope you enjoyed the learning with this article. Hit the like button. Share this article with your friends and classmates.

Don’t forget to share your views/feedback about the article Create and Edit tables class 10 and always feel free to ask your doubts in comment section.

In next article we will discuss data types used in OO base in detail.

Recommended: Information Technology

Leave a Reply