Monday, 25 March 2013
Databases
Building a database correctly is imperative in order to be able to retrieve information correctly. The first step that must be taken when creating a database is to evaluate what is required of the database. For instance, a business might want tables containing data on products, suppliers and orders while a school may need a database with tables on teachers, students and assignments. Once the table categories have been determined, the database can be created. Reports and forms can be made later to manipulate and combine data in different tables.
Another commonly used term in databases is the SQL - or "Structured Query Language." Because of the acronym, SQL is often referred to as "Sequel." SQL is the computer language used to request, retrieve and manipulate information from a relational database. Once a user learns basic Structured Query Language, she will realize that the data can be manipulated precisely to suit the requirements. For example, "Select" defines what info should be pulled, "From" allows users to specify from which table to pull the data and "Where" allows the users to enter a condition. For example, "SELECT StudentName FROM Classes WHERE Grade=B" might pull a list of the names of all the students from a table named Classes who currently have a B average. With ample time and practice, databases and database language can be mastered by anyone.
Subscribe to:
Posts (Atom)