Detail Form
We will send your result on your email id and phone no. please fill detail
In MySQL, the CURRENT_USER() function returns the ______________________________________.
In MySQL, which of the following built-in functions gives the current time?
In MySQL, which of the following is not an aggregate function?
In SQL, which of the following joins are used to retrieve records that are common between two tables?
Based on the following tables, what is the output of the SQL query:
Table: PRODUCT1
PID | NAME |
---|---|
100 | Samsung |
200 | Nokia |
400 | LG |
Table: PRODUCT2
SL No | PID | NAME |
---|---|---|
1 | 200 | Sony |
2 | 300 | Microsoft |
3 | 400 | Apple |
SQL > SELECT PID FROM PRODUCT1 UNION ALL SELECT PID
FROM PRODUCT2 ORDER BY PID;