MCQOPTIONS
Bookmark
Saved Bookmarks
→
Mysql
→
Data Types in Mysql
→
Which among the following is not a query clause ?..
1.
Which among the following is not a query clause ?
A.
FROM
B.
ALTER
C.
MODIFY
D.
WHERE
E.
None of these
Answer» E. None of these
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
In the following query person_id can be<br><pre class="prettyprint lang-c">SELECT Emp_id, fname,Lname, Birth_date FROM Employee<br> WHERE Emp_id=101;<br></pre>
What will be the output of the query given below?<br><pre class="prettyprint lang-c">SELECT emp_id, fname, lname<br>FROM employee<br>WHERE title='Manager AND start_date > 2016-03-20;<br></pre>
What will be the output of the query given below?<br><pre class="prettyprint lang-c">SELECT *<br>FROM Army<br>WHERE (title= Sergeant ) OR (start_date=1995-03-20);<br></pre>
What will be the output of the query given below?<br><pre class="prettyprint lang-c">SELECT *<br>FROM Student<br>WHERE (title= Monitor ) AND (start_date=2019-01-25);<br></pre>
What will be the output of the query given below?<br><pre class="prettyprint lang-c">SELECT *<br>FROM Student<br>WHERE title= Monitor ;<br></pre>
What will be the output of the query given below?<br><pre class="prettyprint lang-c">SELECT *<br>FROM employee<br>WHERE (title= HEAD TELLER ) OR (start_date > 2013-01-24);<br></pre>
What will be the output of the query given below?<br><pre class="prettyprint lang-c">SELECT *<br>FROM Army<br>WHERE (title= Sergeant ) AND (start_date > 1995-03-20);<br></pre>
What will be the output of the query given below?<br><pre class="prettyprint lang-c">SELECT Student_id, FirstName, LastName<br>FROM Student<br>WHERE title= Monitor AND start_date=2017-02-25;<br></pre>
What will be the output of the query given below?<br><pre class="prettyprint lang-c">SELECT Id, FirstName, LastName<br>FROM Student<br>WHERE title= Monitor ;<br></pre>
Which clause is used to filter out unwanted Groups ?
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply