Database Management System Assignment Questions Answers
कोई प्रश्न रहा जाता है ही तो नीचे कॉमेंट में बताए Write a query to create a table and view the table स्ट्रक्चर To create a table in MySQL, you need to use the CREATE TABLE statement. Here's a basic example of how to create a simple table called "users", which contains three columns ("id", "name", and "email"): ``` CREATE TABLE users ( id INT(11) NOT NULL AUTO_INCREMENT, name VARCHAR(255) NOT NULL, email VARCHAR(255) NOT NULL, PRIMARY KEY (id) ); ``` This statement creates a table 'users' with three columns; an auto-incrementing integer column called 'id', a string column called 'name', and another string column called 'email'. The 'id' column is set to be the primary key, which means each row will have a unique value in that column. To view the table structure, you can use the DESCRIBE statement or SHOW CREATE TABLE. Here's an example: ``` DESCRIBE users; ``` This will output a table showing the name of ea…