Google+ has very long User IDs

104560124403688998123

(21 characters), which is not possible to input into BIGINT field (not unsigned)

What column type would you use for such IDs ?

I do not think that varchar is good idea

link|improve this question

downvoter: reason? – genesis Jul 29 '11 at 11:21
feedback

2 Answers

up vote 5 down vote accepted

if the length of the google id is predictable, use a static char(length), add an index on it and create an (internal) integer primary key. Inside of your application you map the data to the integer primary key. So if someone searches by google id, you lookup the integer primary key for this google id and do the rest of your queries with the integer primary key.

So the schema looks like:

Mapping Table:

id (integer) | google_id (char(length)) 

So if you create another table like comments etc, use the primary key id, if you want to lookup all comments for a certain googleid, get the internal id first and then join the comments. This way you have only one query criteria on a static, indexed char field with a predictable length, all other joins and queries will use the integer key.

link|improve this answer
Yup, that's what I was looking for. – genesis Jul 29 '11 at 11:24
Wouldn't the mapping table overflow after id reached a limit? That what option we will left? – mtariq Sep 12 '11 at 10:40
hi, there is only one row in the mapping table for each unique google_id, assuming he's using mysql with an unsigned int field the limit would be 4294967295. If that is not enough you could still switch to bigint or use a composite primary key. A table size overflow is not very likely to happen as MySQL is able to store data in the TB range. – sled Sep 15 '11 at 13:03
feedback

I would use the same as I do with Facebook: varchar.

link|improve this answer
It's bad when searching. Int columns are great for WHERE clause but I think varchar isn't – genesis Jul 29 '11 at 11:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.