What Is SQL

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

c

What is SQL?

Answer: Structured Query Language (SQL) is a language that provides an interface to


relational database systems.
In common usage SQL also encompasses DML (Data Manipulation Language), for INSERTs,
UPDATEs, DELETEs and DDL (Data Definition Language), used for creating and modifying
tables and other database structures.

c What is SELECT statement?

Answer: The SELECT statement lets you select a set of values from a table in a
database.The values selected from the database table would depend on the various
conditions that are specified in the SQL query.

c 0  can y  c mpare a part  the name rather than the entire name?

Answer: SELECT * FROM people WHERE empname LIKE '%ab%'Would return a recordset
with records consisting empname the sequence 'ab' in empname.

c What is the INSERT statement?

Answer: The INSERT statement lets you insert information into a database.

c 0 d y  delete a rec rd r m a database?

Answer: Use the DELETE statement to remove records or any particular column values from
a database.

c 0  c ld I get distinct entries r m a table?

Answer: The SELECT statement in conjunction with DISTINCT lets you select a set of
distinct values from a table in a database.The values selected from the database table
would of course depend on the various conditions that are specified in the SQL
query.ExampleSELECT DISTINCT empname FROM emptable

c 0 t get the reslts  a Qery s rted in any rder?

Answer: You can sort the results and return the sorted results to your program by using
ORDER BY keyword thus saving you the pain of carrying out the sorting yourself.The ORDER
BY keyword is used for sorting.SELECT empname, age, city FROM emptable ORDER BY
empname

c 0  can I ind the t tal nmber  rec rds in a table?


Answer: You could use the COUNT keyword , exampleSELECT COUNT(*) FROM emp WHERE
age>40

c What is GROUP BY?

Answer: The GROUP BY keywords have been added to SQL because aggregate functions
(like SUM) return the aggregate of all column values every time they are called.Without the
GROUP BY functionality, finding the sum for each individual group of column values was not
possible.

c What is the dierence am ng "dr pping a table", "trncating a table" and


"deleting all rec rds" r m a table.

Answer: Dropping : (Table structure + Data are deleted), Invalidates the dependent objects
,Drops the indexes Truncating: (Data alone deleted), Performs an automatic commit, Faster
than deleteDelete : (Data alone deleted), Doesn't perform automatic commit

You might also like