Answer Posted / mohan kuamr
# 3
The main four query statements are:-
1.) select
ex:select * from table_name
2.) insert
ex:insert into table_name(c1,c2,c3...) values(v1,v2,v3..)
3.) delete
ex: delete * from table_name
4.) update
ex:update table_name
set col_name='value'
where col_name='something'
note:examples are based on ms sql server database.k
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Explain the difference between control flow and data flow?
What is SQL Azure Fabric?
What are the differences between “row_number()”, “rank()” and “dense_rank()”?
Where is trigger in sql server?
Distinguish between commit and rollback?
What is a data collection table?
What is the difference between a stored procedure and a user defined function?
What are indexes in sql?
What is normalization 1nf 2nf 3nf?
What is an identity?
Which are ddl commands?
What are out-of-range errors with date and time literals?
List the types of recovery model available in sql server?
You accidentally delete the msdb database what effect does this have on your existing sql databases, and how do you recover?
Can sql servers link to other servers?