answersLogoWhite

0

What is structure query language?

Updated: 8/11/2023
User Avatar

Wiki User

11y ago

Best Answer

ADVANTAGES :)-

1.Its a high speed language.

2.There is not much of coding required like codind of programming languages.

3.Its emphasize on the concept of ORDBMS.

Disadvantages:(-

only 1

Its not v.user friendly!!

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

Structure Query language is a standard language to maintain the relational database . By using this,we can update,delete,select,query the data in the database .

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is structure query language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you define the structure size in C language?

You cannot define the size of the structure, but you can query it with sizeof.The structure size in C language depends on the elements of the structure.Example:#include struct Test{int v;char str[100];};int main(){printf("The structure size is %d\n", sizeof(struct Test));return 0;}


What is the difference between QBE and SQL?

Query by Example (QBE) is a database query language for relational databases. A QBE parser parses the search query and looks for the keywords. A more formal query string, in languages such as SQL, is then generated, which is finally executed. However, when compared with a formal query, the results in the QBE system will be more variable.SQL (Structured Query Language) SQL is a set-based, declarative query language, not an imperative language such as C or BASIC. However, there are extensions to Standard SQL which add procedural programming language functionality, such as control-of-flow constructs


What is the full form of SQL in computer?

Structured Query Language


What is Object Query Language OQL?

OQL is a database query language(related to ODMG) that is based on SQL and supports the adding, retrieving, querying, and invocation of objects. OQL is a version of the Structured Query Language. A object query language that supports complex data types such as multimedia, spatial, compound documents, etc., that are stored as objects. Standard SQL queries can still be used, and the OQL server process converts the objects into relational views. Sanjay


What is a special language used to write computer programs?

SQL which stands for Structured Query Language The term you are looking for is programming language.

Related questions

What is structure and union?

Structure is a query that is used in language c++


What is the full form of sql?

Structure Query Language


Is a query language procedural language?

isA query language is a procedural language.


Is a query language a procedural language?

isA query language is a procedural language.


Write a note on computer structure?

Control our any data base with the help of SQL, the professional name of SQL is SEQUEL ( Structure Query English Language)


Can SQL be considered as a QUERY language?

The 'Q' and the 'L' in SQL standard for the words 'Query' and 'Language'. So yes. SQL can be considered a query language.


What do mean by query language and its needs?

Query Language is way for communicating from the database. It work as a interface between user and the Database. its not possible to generate a result from database without query language. Query language helps us to communicate with database.


Which query language will use in MS Access to maintain database?

It uses a version of SQL. (Structured Query Language).


A query language is an example of?

Any thing that has to do with database is a query lanquage. As in query the data to retrieve whatever you are looking for.


What is an example of a standard query language used in relational databases?

The standard query language for relational databases, as adopted by the American National Standards Institute (ANSI), is SQL, which is generally understood to be an abbreviation for "structured query language."


What is the difference between QBE and SQL?

Query by Example (QBE) is a database query language for relational databases. A QBE parser parses the search query and looks for the keywords. A more formal query string, in languages such as SQL, is then generated, which is finally executed. However, when compared with a formal query, the results in the QBE system will be more variable.SQL (Structured Query Language) SQL is a set-based, declarative query language, not an imperative language such as C or BASIC. However, there are extensions to Standard SQL which add procedural programming language functionality, such as control-of-flow constructs


How do you define the structure size in C language?

You cannot define the size of the structure, but you can query it with sizeof.The structure size in C language depends on the elements of the structure.Example:#include struct Test{int v;char str[100];};int main(){printf("The structure size is %d\n", sizeof(struct Test));return 0;}