SQL - What is SQL
SQL ये Structured Query Language का संक्षिप्त रूप है |
SQL ये RDBMS की बहुत ही महत्वपूर्ण language है |
SQL में उसके clauses के साथ Statements का इस्तेमाल data को store, update, delete और manipulate करने के लिए किया जाता है |
SQL में create, select, insert, update, delete और drop और आदि statements का इस्तेमाल किया जाता है |
SQL Important Statements
SQL statements आसानी से समझ आते है क्योंकि वो plain english जैसे होते है |
create : नया database या table create किया जाता है |
select : table को select किया जाता है |
insert : table में rows/records को insert किया जाता है |
update : table में rows/records को update किया जाता है |
delete : table में से rows/records को delete किया जाता है |
drop : table को delete किया जाता है |