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
What is explicit mode in sql server?
Explain about extended stored procedure?
What is the osql utility?
What is difference between equi join and inner join?
What is #temp and @table variable in SQL server?
Explain an automatic checkpoint
How to recompile stored procedure at run time?
How to filter out duplications in the returning rows in ms sql server?
What is the Main Difference between ACCESS and SQL SERVER?
What is role playing dimension with two examples? : sql server analysis services, ssas
hi, how to link a text file and a .rpt file in my tables of sql server and to retrieve those records for further use. reply me as soon as possible.
When I run the sql server 2000 setup, it just hangs. What do I do?
How will you decide the active and passive nodes?
What is logshipping and its purpose?
Can a table be created inside a trigger?