Question
Easy

........... symbol is used to see every column of a table.

1
/
2
*
3
!
4
--
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter:
Topic:
Correct Answer
Option B
Explanation

The correct option is (2): The asterisk symbol (\*) is the standard and most widely used wildcard in Structured Query Language (SQL) to represent "all columns" or "all fields" within a specified table. When you write a query like SELECT * FROM students;, the asterisk instructs the database management system to retrieve data from every single column defined in the students table. This is a fundamental command in database querying,…Read More