SQLce create table "index field" explanation (SQL Management Studio) ?
Posted
by
bretddog
on Stack Overflow
See other posts from Stack Overflow
or by bretddog
Published on 2010-12-22T14:00:48Z
Indexed on
2010/12/22
14:54 UTC
Read the original article
Hit count: 150
sql
|sql-server
Hi, I'm new to databases, and now creating SQLCE database in Management Studio. There is a value in brackets; [UQ_Users_0000000000000028], which seems a bit random to me, so would just like to ask if someone could explain this field?
Is it just simply required to be a unique field? Is there any reason why I would want to change it to something else than what SSMS scripts?
cheers!
CREATE TABLE [Users] (
[UserID] int NOT NULL
.....
CREATE UNIQUE INDEX [UQ__Users__0000000000000028] ON [Users] ([UserID] ASC);
© Stack Overflow or respective owner