Answer Posted / guest
1.Simple/Inner/Natural Join
2.Equi(contains only = sign) /Non-Equi Joins(other simbles)
3.Outer Joins(Left Outer Join/Right Outer Join)
4.Cross Join
5.Self Join
| Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
What is the most important ddl statements in sql are?
What found sql?
What is a string data type in sql?
What is trigger in pl sql with examples?
Explain what is a subquery ?
What is the file extension for sql database?
Differentiate between syntax and runtime errors.
What is %rowtype in pl sql?
What is clause in sql?
what is an extent ? : Sql dba
State few characteristics of pl/sql?
What is difference between stored procedure and trigger?
what is a database? : Sql dba
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this
What is scalar and vector?