V_CREDITCARDTOKENUNIQUE
Used to ensure that non-null credit card tokens are unique.
Fields
| Field | Field Type | Null | Description |
|---|---|---|---|
| CREDITCARDTOKEN | uniqueidentifier | yes |
Indexes
| Index Name | Fields | Unique | Primary | Clustered |
|---|---|---|---|---|
| UC_CREDITCARDTOKENUNIQUE | CREDITCARDTOKEN | yes | yes |
Definition
Copy
create view dbo.V_CREDITCARDTOKENUNIQUE with schemabinding
as
select CREDITCARDTOKEN
from dbo.CREDITCARD
where CREDITCARDTOKEN is not null