What are pl/sql packages?
What are tables and fields in the database?
When to use inner join and left join?
Is subquery faster than join?
What are the advantages of stored procedure?
What are % type and % rowtype?
what is oracle database ? : Sql dba
Does group by remove duplicates?
What is sql not null constraint?
What does select top 1 do in sql?
Which column of the user triggers data dictionary view displays the database event that will fire the trigger?
What is rownum and rowid?
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 the use of function in sql?
how to fetch alternate records from a table? : Sql dba