In A Database Environment, What Does "Looking For Records That Satisfy Some Criteria" Mean?
1 Answer - Sort by: Date | Rating
The IT revolution astound the world in every field, nowadays no institution can protract its growth without using information technology ---the language of the new century. Those days are gone when institutions maintain databases on a register manually. The integrated (DBMS) or distributed database systems (DDBMS) and relational database system (RDBMS) has solved the problem of databases worries now. A database can contain millions of records and trillion of processed data as information in it. The problem arises when anyone need to get a data exactly to his requirement so no information overloading may occurs.
Each DBMS comes with the language called SQL (Structure Query Language) which contains Data manipulation and definition commands for a front-end user to retrieve and update valuable information out of large stored database.
In database environment each value stored in a table is called record. Each column in table is called field. The situation where on need to get a data or a whole record of the employee whose employee number is let say 1001. The following SQL query as per SQL ANSI (American National Standard Institute) standard will satisfy this criterion.
SELECT * FROM Employee WHERE EmployeeNo = 1001
*Where Employee is the table name and EmployeeNo is column in this table.
The query will display all information about Employee whose employee number is 1001 . The '*' is a wild card to display all record in a particular table.
Each DBMS comes with the language called SQL (Structure Query Language) which contains Data manipulation and definition commands for a front-end user to retrieve and update valuable information out of large stored database.
In database environment each value stored in a table is called record. Each column in table is called field. The situation where on need to get a data or a whole record of the employee whose employee number is let say 1001. The following SQL query as per SQL ANSI (American National Standard Institute) standard will satisfy this criterion.
SELECT * FROM Employee WHERE EmployeeNo = 1001
*Where Employee is the table name and EmployeeNo is column in this table.
The query will display all information about Employee whose employee number is 1001 . The '*' is a wild card to display all record in a particular table.
0
0
- How The Efficiency And Integrity Of The Data Is Maintained At All?
- What Is File-based Approach?
- How Do I Create An SQL Queries That Show: Student Name, Address, And Contact Information For All Students? Student Name And The Certificate Program For Which They Are Registered Student Name And The Courses For Which They Are Registered?
- I Need To Create A System Where Students Can Register For One Of 5 Certificates, Select Courses, And Obtain A Transcript Of The Grades Received For The Courses. Each Student Can Be Enrolled For Only One Certificate. There Are 4 Courses In Each Cert?
- How The Efficiency And Integrity Of The Data Is Maintained At All Times Although The Database Is Used By Varying Organisational Levels? 2 Examples
- What Is Indexed File Organization?
- How The Performance Of Database?
- How Is That The Additional Hardware Affect The Data Base Management System?
- How Do You Automate Starting And Shutting Down Of Databases In Unix?
- What Is Centralize Database Management System?
- What Is Hierarchy Or Structure Of Database?
- Explain How Records And Related Records Are Deleted To Ensure The Integrity?
- What Is The Definition Of Hierarchical?
- What Is Rule Based Query?
- Network Data Model And How Its Structure Contributed To Database Environment Development?
- What Is Relationship In Terms Of Dbms?
- Which Of The Following Statements About Referential Integrity?
- Will The Little Ma Mind Get The Ind Entity?
- Describe Hierarchical Database And It's Example?
- What Are The Advantagem Of Database Management Approach To Organizing?
- Why Does Integrating Flat File Data In A Database Improve Data Integrity?
- What Is Sequential?
- What Do Index Mean?
- How To Remember Stationary And Stationery?
- What Is Program Data Independence?

New Comment - Comments are editable for 5 min.