IF EMP HAS 2 ROWS,DEPT HAS 4 ROWS.WHATS THE RESULT OF
SELECT * FROM EMP,DEPT;
Answer / shailesh
Cartetian product i.e. 8 rows will be returned.
Is This Answer Correct ? | 26 Yes | 0 No |
explain the advantages and disadvantages of stored procedure? : Sql dba
How do I run pl sql in sql developer?
ename empno deptno amar 1 10 akbar 2 20 anthonny 3 30 jonathan 4 40 write a procedure to dispaly the column values ina row separated by a deleimiter eg - input - select ename from emp '|' output - amar|akbar|anthony|jonathan input - select empno from emp '@' o/p - 1@2@3@4 input - select deptno from emp '/' o/p - 10/20/30/40 Pls answer this questn.
Does access use sql?
i have a word ***********hello********world******. I require a o/p **********hello world**********, Need to delete the middle stars.
What is the cause of mutating table error and how can we solve it?
How to export the table data (this table having 18 million records) to .csv file. Please tell me is there any faster way to export the data.
what are local and global variables and their differences? : Sql dba
Define select, insert, create, delete, update, drop keywords
What is the difference between DELETE and TRUNCATE?
15 Answers Johns Hopkins University, Tech Mahindra,
How can I see all tables in sql?
What is the Difference between Procedure and Function.Can we call a Function in a DML?