SQL > Data Definition Language - DDL Data Definition Language (DDL) is a part of SQL that is used to create, modify, and delete database objects such as table, view, and index. Below are the most common DDL commands: डेटा डेफिनिशन लैंग्वेज (डीडीएल) एसक्यूएल का एक हिस्सा है जो डेटाबेस ऑब्जेक्ट्स जैसे टेबल, व्यू, और इंडेक्स को बनाने, संशोधित करने और हटाने के लिए उपयोग किया जाता है। नीचे सबसे सामान्य DDL कमांड दिए गए हैं: SQL CREATE TABLE SQL Data Types SQL View SQL CREATE VIEW SQL Index SQL CREATE INDEX SQL DROP TABLE SQL TRUNCATE TABLE SQL USE SQL CREATE DATABASE SQL DROP DATABASE SQL > Data Definition Language - DDL > Create Table Statement In a relational database, data is stored in tables. Given that there is no way for the database vendor to know ahead of time what your data storage needs are, you will for sure need to create tables that fit your needs in the database. Therefore, the CREATE TABLE statement is one of the most ...