我有一个结构如下的表:
CREATE TABLE tb_comm_hist_xfer (
tb_comm_hist_xfer_id binary(16) NOT NULL,
tb_old_customer_id int NOT NULL,
tb_customer_id int NULL,
date_entered datetime NOT NULL
);
我想将tb_com_hist_xfer_id
列作为自动填充的列,如IDENTITY
属性。但我不能IDENTITY
用于二进制类型。我有什么选择?