can unique key be used as foreign key? What is the difference between Primary key and unique key?
Latest Answer: No, as unique allow only one null in a column and there cannot be any duplicate data can be inserted in that column which is associated with unique key and on the other hand foreign key allow the duplicate key. ...