It is not possible to drop multiple tables in the same statement.
What represents a ‘tuple’ in a relational database?
Which Clause is used to select a particular table in Mysql?
Which storage engine in MySQL provides foreign key support?
Which search mode uses natural language search as a subroutine?
What is the meaning of “REFERENCES” in table definition?
Suppose a stored function named PI() is written in the database ‘sampledb’. How would it be called?
In the following query, what does “person” stands for:
INSERT INTO person (person_id, fname, lname) VALUES (1,’S’,’P’);
What will be the result of the query given below?
SELECT emp_id, ‘ACTIVE’ STATUS, emp_id * 3.14 emp_pi, UPPER (lname) last_name FROM employee;
What will be the output of the query given below?
SELECT emp_id, fname, lname FROM employee WHERE title=’HEAD TELLER’ AND start_date=2008-11-24;