آپ ایم ایس ایکسل میں کالم کو کیسے حذف کرتے ہیں؟
-
A. Select the column heading you want to delete and select Insert > Delete from the menu
-
B. Select the column heading you want to delete and select the Delete Row button on the standard toolbar
-
C. None of these
-
D. Right-click the column heading you want to delete and select delete from the shortcut menu
Explanation
The correct answer is:
Right-click the column heading you want to delete and select "Delete" from the shortcut menu.
Alternatively, you can also:
- Select the column heading, go to the "Home" tab, and click "Delete" in the "Cells" group.
- Select the column heading and press "Ctrl" + "-" (minus sign).
ٹیبل سے کالم حذف کرنے کے لیے کون سی ایس کیو ایل کمانڈ استعمال کی جا سکتی ہے؟
-
A. ALTER TABLE TableName DROP COLUMN ColumnName
-
B. MODIFY TABLE TableName DROP COLUMN ColumnName
-
C. MODIFY TABLE TableName DROP ColumnName
-
D. ALTER TABLE TableName DROP ColumnName
Explanation
- This is the standard SQL syntax to drop a column from a table.
- The ALTER TABLE statement is used to modify the structure of a table, and the DROP COLUMN clause is used to delete a column.
- An example: ALTER TABLE MyTable DROP COLUMN MyColumn;
✅ Correct: 0 |
❌ Wrong: 0 |
📊 Total Attempted: 0