+ 1
What is sql ?
4 Respostas
+ 5
sql means structured query language and it is the language you have to use when you deal with relational databases like Oracle, mysql, postresql, sqlite, etc.
it is composed by two major subsets of commands: ddl and dml.
with the first you create the objects (eg tables), with the second you manipulate their content
+ 1
sql is useful for database...
its good learn it
0
Sql is structured query language used to get data from the database
for example, you can get all people from the people table by using this query
select * from people;
sql is very close to English
- 1
bbbb