In: Computer Science
SQL is our language for relational databases - do you think it's an adequate "language" for database creation and manipulation?
Please help answer this.
(Ans) Database is an organized stack of information. The databases, with which you interface, are programs that enable clients to store and manage information in a logical manner. The Database is composed of many tables in which each table stores rows of data all in an organized format based on the table’s columns called as fields. SQL queries are responsible for the control of rows of information that is stored in the tables and the tables themselves.
SQL is the most main language that is used to access databases and manipulate them because it can work with any database whtsoever.
Databases are classified into two categories based on the using of SQL standards. They are :-
SQL provides us with lots of inbuit features/ commands for the creation and manipulation of tables in a database.
Examples of such commands are CREATE TABLE tablename , UPDATE TABLE tablename etc.