What is a table in a Database?

Answered by Kaushik Chandra

Tables are the database object that's utilized for storing related records within the form of rows and columns.Each and every data will be saved in records in a Table. Records will have fields that include information of a specific individual, company, or a thing in a db. In this db, a record basically includes the information for Client related Data. Records show up as rows within the db table

To Create an above Table in a Database,

TABLE EMPLOYEE(

    EMP_NUM int,

    GENDER varchar(1),

    BUSINESS_UNIT int,

    FISCAL_YEAR int,

    FISCAL_PERIOD int,

    EMP_ACTIVE int,




Your Answer

Interviews

Parent Categories