How can we write or define DDL statements in Sql server and
DML statements?
Answer Posted / simran_8185@rediff.com
DDl is a data defination language means we are defining
like create is a DDL statement
Eg: create table Emp(name varchar(20),address varchar(40));
whereas DML is a Data Manipulation Language in which
updations are made like
update table Emp set name="Ravi" where name="Anil"
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is self contained multi valued query?
How to modify an existing user defined function?
What is the significance of master, tempdb and model databases?
Can we call stored procedure in view in sql server?
What is the difference between seek predicate and predicate?
What is temporal table?
Explain atomicity?
What is the difference between varchar and nvarchar?
How to defragment indexes with alter index ... Reorganize?
How to include text values in sql statements?
what is hash nonclustered index
How do I start and stop sql server?
How to delete duplicate rows?
What is sql server profiler trace data file?
When should you use an instead of trigger?