Answer Posted / mohan kumar.a
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 ? | 3 Yes | 1 No |
Post New Answer View All Answers
How to create user defined functions with parameters?
What are the two authentication modes in sql server?
What is thr feature of change data capture?
What is Service Broker in sql server 2012?
What do you understand by a stored procedure?
How many replicas are maintained for each SQL Azure database?
How to count rows with the count(*) function in ms sql server?
How do you improve the performance of a SQL Azure Database?
Can a table be moved to different filegroup?
What is resource db in sql server?
What is a field in a table?
What do you mean by an execution plan? Why is it used? How would you view it?
Explain boyce and codd normal form(bcnf)?
what information is maintained within the msdb database? : Sql server administration
What are different types of subquery?