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
What are the default system databases in sql server 2000?
Why use cursor in sql server?
What is the difference between ddl and dml?
Define Wed Edition in SQL Azure?
What is built-in/administrator?
How do you know if sql server is running on your local system?
What are the functions in sql server?
What is sql sandbox in sql server?
What is a fill factor?
How do I manually uninstall an instance of sql server 2016?
Would you store your query in a ssrs report or a database server? State the reason why?
Explain trigger classes i.e. Instead of and after trigger?
What is the index requirement in SQL Azure?
how you can list all the tables in a database?
How many types of cursor type are there?