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
explain how to create a new schema in a database? : Sql server database administration
What command must you use to include the not null constraint after a table has already been created?
What are views used for?
Can the “if update (colname)” statement be used in a delete trigger?
Write an sql query to find first weekday of the month?
What is the difference between ‘having’ clause and a ‘where’ clause?
What is Fragmentation and Defragmentation? For 32GB Table,How can we do the fragmentation?
Explain what are various ways to enhance the ssrs report?
How to make a remote connection in a database?
What is an index in sql?
What is named query? : sql server analysis services, ssas
Mention the differences between sql server and mysql.
List out the difference between union and union all in sql server?
What xml support does the sql server extend?
Please explain that what are the basic functions for master, msdb, model, tempdb and resource databases? : SQL Server Architecture