What is view? Can we update view
What is join view in sql?
What is auto increment in sql?
What do you mean by “trigger” in sql?
How do you optimize a stored procedure query?
What are the differences between in and exists clause?
need to split a string into separate values. eg. col1 col2 ---------- 100 - 'a,b,c' 200 - 'a,x,d,e' 300 - 'c' result: value count ------------- a - 2 b - 1 c - 2 etc.
Types of cursor locks and explanation each of them ?
what are the difference between clustered and a non-clustered index? : Sql dba
in sql table follw columns r their vehicle_no|servicetype|date|location| 1234 |1FS |1-JAN|PUNE| 4561 |2FS |5-JAN|PUNE| 1234 |PS |7-JAN|PUNE| 1234 |PS |15-JAN|MUMB| i want o/p below vehicleno|1fs|1fsdate|1fslocation|1ps|1PSDATE|1PSLOC|2PS|2PS DATE|2PSLOCA e.g 1234|1FS|1JAN|PUNE|1PS|7JAN|PUNE|2PS|15JAN|MUMBAI PLS help me out to execute using sql query
How to make a copy values from one column to another in sql?
How to find 3rd highest salary of an employee from the employee table in sql?
what are the advantages and disadvantages of views in a database? : Sql dba