Govt. Exams
Entrance Exams
BLOB (Binary Large Object) stores large binary data. CLOB stores large text. TEXT is limited compared to BLOB/CLOB.
HAVING clause filters groups created by GROUP BY, while WHERE filters individual rows before grouping.
The UPDATE statement is used to modify existing records in a table.
COUNT(*) returns the total number of rows in the specified table, including NULL values.
The SUM() function calculates the total sum of all values in a numeric column.
INSERT INTO is the correct SQL syntax for inserting new records into a table, followed by the table name and VALUES clause.
The DISTINCT keyword removes duplicate rows from the result set of a query.
The WHERE clause is used to filter records that meet specified conditions in a SQL query.
SELECT is the standard SQL command used to retrieve or query data from one or more tables in a database.