SQL Commands का उपयोग डेटाबेस से डेटा प्राप्त करने, डेटा को जोड़ने, modify करने, हटाने, नए tables को बनाने और डेटाबेस management के अन्य कई कार्यों के लिए किया जाता है।
इस लेख में, हम आपको कुछ common SQL Commands की List देंगे, जिन्हें डेटाबेस के साथ काम करते समय उपयोग में लाया जाता है।
SQL Command List
SQL Command | Description |
---|---|
SELECT | Retrieves data from one or more tables. |
INSERT INTO | Adds new records to a table. |
UPDATE | Modifies existing records in a table. |
DELETE FROM | Removes records from a table. |
CREATE TABLE | Creates a new table with specified columns. |
ALTER TABLE | Modifies an existing table (e.g., add/remove column). |
DROP TABLE | Deletes an existing table and its data. |
CREATE INDEX | Creates an index on one or more table columns. |
DROP INDEX | Deletes an existing index. |
TRUNCATE TABLE | Removes all data from a table but keeps the table. |
CREATE DATABASE | Creates a new database. |
USE | Selects a specific database to work with. |
GRANT | Gives specific privileges to users/roles. |
REVOKE | Removes specific privileges from users/roles. |
COMMIT | Saves changes made in a transaction. |
ROLLBACK | Undoes changes made in a transaction. |
BEGIN TRANSACTION | Starts a new transaction. |
SAVEPOINT | Sets a savepoint within a transaction. |
ROLLBACK TO SAVEPOINT | Rolls back to a specified savepoint. |
SET | Sets session-specific configuration options. |
SHOW | Displays information about database objects. |
DESCRIBE / DESC | Shows the structure of a table. |
CREATE VIEW | Creates a virtual table based on a SELECT statement. |
DROP VIEW | Deletes an existing view. |
CREATE TRIGGER | Defines a trigger that automatically executes when a specific event occurs. |
DROP TRIGGER | Removes an existing trigger. |
CREATE PROCEDURE | Creates a stored procedure. |
DROP PROCEDURE | Deletes an existing stored procedure. |
CREATE FUNCTION | Creates a user-defined function. |
DROP FUNCTION | Deletes an existing user-defined function. |
इस list में सबसे अधिक उपयोग किए जाने वाले कुछ SQL Commands शामिल हैं, आप इनका उपयोग Database Management के कई कार्यो के लिए कर सकते हैं।
SQL (Structured Query Language) – यह डेटाबेस से डेटा प्राप्त करने, उसे संशोधित करने, जोड़ने और हटाने के लिए इस्तेमाल होती है, और इसे विभिन्न प्रकार की डेटाबेस प्रणालियों के साथ उपयोग किया जा सकता है, जैसे कि MySQL, PostgreSQL, SQL Server, और Oracle. SQL डेटाबेस प्रबंधन के कई पहलुओं को सरल और प्रभावी तरीके से संभालने के लिए महत्वपूर्ण है, और यह डेटाबेस प्रोफेशनल्स के लिए एक अत्यंत महत्वपूर्ण टूल है।
FAQs
SQL का पूरा नाम है “Structured Query Language”
SQL एक डेटाबेस प्रबंधन और डेटा प्रसंस्करण की भाषा है जिसका उपयोग डेटाबेस से डेटा प्राप्त करने, संशोधित करने, जोड़ने और हटाने के लिए किया जाता है।
निवेदन
उम्मीद है कि आपको यह लेख (SQL Commands: सबसे महत्वपूर्ण और सबसे ज्यादा उपयोग होने वाले SQL Commands) जरूर पसंद आया होगा।
अगर यह Article आपके लिए उपयोगी रहा हो तो इसे अपने दोस्तों के साथ जरूर शेयर करें और आपके जो भी सवाल हों उन्हें नीचे कमेंट करके बताएं।