{# canonical_base is the OWNING tenant's origin: all 16 Peasy domains serve the same catalogue, so a page rendered by a non-owner points its canonical at the owner instead of competing with it. Falls back to this site for static/self-owned pages. #}
🍋
Menu
.sql Code

SQL (Structured Query Language)

रिलेशनल डेटाबेस को प्रबंधित और क्वेरी करने की मानक भाषा। SQL फ़ाइलें डेटाबेस स्कीमा, डेटा और क्वेरी को टेक्स्ट फॉर्मेट में स्टोर करती हैं जिसे डेटाबेस सिस्टम्स द्वारा निष्पादित किया जा सकता है।

MIME Type

application/sql

प्रकार

टेक्स्ट

संपीड़न

दोषरहित

लाभ

  • + Universal language supported by every relational database
  • + Declarative syntax — describe what you want, not how to get it
  • + Powerful JOIN, aggregation, and window functions
  • + ACID transactions ensure data integrity

हानियाँ

  • Dialect differences between PostgreSQL, MySQL, SQLite, etc.
  • Not suited for unstructured or graph data
  • Complex queries can be hard to read and optimize

.SQL कब उपयोग करें

डेटाबेस बैकअप, स्कीमा माइग्रेशन, डेटा इम्पोर्ट/एक्सपोर्ट, क्वेरी लाइब्रेरी, और डेटाबेस-टू-डेटाबेस ट्रांसफर।

तकनीकी विवरण

SQL फ़ाइलों में DDL (CREATE, ALTER, DROP), DML (SELECT, INSERT, UPDATE, DELETE) और DCL (GRANT, REVOKE) स्टेटमेंट होते हैं। डायलेक्ट (MySQL, PostgreSQL, SQLite, SQL Server) के बीच सिंटैक्स अंतर होते हैं। एन्कोडिंग आमतौर पर UTF-8 होती है।

इतिहास

IBM के Raymond Boyce और Donald Chamberlin ने 1970 के दशक में SQL (मूल रूप से SEQUEL) विकसित किया। ANSI ने 1986 में और ISO ने 1987 में इसे मानकीकृत किया। SQL-92, SQL:1999, SQL:2003, SQL:2016 जैसे संस्करणों के माध्यम से यह विकसित होता रहा।

.SQL से रूपांतरित करें

.SQL में रूपांतरित करें

संबंधित फ़ॉर्मेट

संबंधित शब्द