Can we use more than one null value for unique key?
Answer Posted / a
we have to use computed column to insert multiple null values.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do you use collections in procedure to return the resultset?
what is a record in a database ? : Sql dba
What is the difference between inner join and left join?
What is trigger in sql?
What is user defined functions?
What is indexes?
How many clustered indexes can be created on a table?
Can we create foreign key without primary key?
Does sql profiler affect performance?
What is sql prepared statement?
How do you create an update query?
what is uncommittable transactions? : Transact sql
What are the methods of filing?
Write a sql query to find the names of employees that begin with ‘a’?
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