|
1.)which of the
following statements are DML Statements?
1.select
2.create
3.Truncate
4.commit
ans :1
2)char datatype
"hhh"=="hhh "
what is the result?
1.true
2.false
ans :1
3)select distinct
empid,empname from employees
will this query execute?
1.true
2.false
ans:1
explanation: when using distinct keyword uniqueness is verified against
the complete row
|