Hi All,
I am new to sql. i have a small question. i have two tables as follows.
Table-A
Column-Key
87634799
98746323
Column-AwpUnitCost
2.3
4.0
Table-B
Column-Type
Missing
Invalid
Column-Destination
Table-A may have thousand records. AwpUnitCost may be positive,negative or Null.
There is no relation in these tables. if Table-A has records then they develop the reports and report type and report links are in table-B. Table-B has fixed two records as shown above. just wondering how can i decide which column should have primary key so it would have clustered index? do i have to add one more column in table-A like KeyId?
Appreciate any help.