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 a differential backup?
Which is faster statement or preparedstatement?
What is ddl command?
which backup strategy you are following at ur company
What is unpivot?
Difference between uniqe index and uniqe constraint?
How do I trace a query in sql server?
Explain transaction server auto commit?
What is the difference between osql and query analyzer?
Explain database normalization?
Why should you use or avoid select * statements?
What happens if null values are involved in bitwise operations?
What is code near application topology?
What is the main difference between ‘between’ and ‘in’ condition operators?
Explain sql server service broker?