Y
Y
YourOwnSenpai2015-11-08 12:33:05
SQL
YourOwnSenpai, 2015-11-08 12:33:05

Where is SQL used?

I understand perfectly well that now everything is written on it, but specific examples are needed. And so that you can describe in detail the details, processes. Thanks in advance to those who respond.

Answer the question

In order to leave comments, you need to log in

5 answer(s)
M
mletov, 2015-11-08
@YourOwnSenpai

Any site that works with a large amount of data in the slightest degree uses relational databases (not counting, of course, any exotic, such as NOSQL, storing data in text files, etc.), SQL is a language for extracting data from such databases.
For example, there was a need to display on the Toaster page all the questions that you asked, an example of an SQL query that will display them

SELECT * 
FROM questions
WHERE userName='YourOwnSenpaie'
/*
* -  означает, что выбираем все поля (имя, фамилию, ник, e-mail и т д)
questions - название таблицы, хранящей вопросы
WHERE userName='YourOwnSenpaie' - условие, означающее, что выбирать нужно только ваши вопросы, а не чужие
*/

D
Dimonchik, 2015-11-08
@dimonchik2013

tin lazy students went
well, at least he writes something, and did not download the essay

A
Alex Safonov, 2015-11-08
@elevenelven

Where there is a need for a relational data model.
https://ru.wikipedia.org/wiki/SQL
Download any framework with ORM.

O
Optimus, 2015-11-08
Pyan @marrk2

All data is now in databases. SQL is needed today in order to be able to select data according to complex conditions. For example, to select only Ivanov Ivanovich whose year of birth is from 1980 to 1990, this is what SQL allows

Y
YourOwnSenpai, 2015-11-08
@YourOwnSenpai

Guys, sorry, but I asked for specific examples. Famous sites, programs. Do search engines, for example, work with SQL? I already checked Wikipedia myself, and I know what the language is for.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question