Computer Science, asked by singhbaljeet55766, 1 day ago

Write a Query to delete a record of employee having Empid = 103.​

Answers

Answered by kushbuchoudhary4
0

Answer:

please write the question correctly

Answered by ImpressAgreeable4985
0

Answer:

SQL DELETE Statement

The SQL DELETE Statement deletes one or more existing records from a table or a view. The syntax of SQL Server delete statement is

-- SQL Server DELETE Syntax

DELETE FROM [Table_Name]  

 WHERE Condition

Condition: Provide the filters or conditions. If the condition is TRUE, then only the SQL Server DELETE Statement will delete the records.

Explanation:

I am not sure abou this

Similar questions