vote up 5 vote down star

I've seen this abbreviation (or mnemonic) used in various examples in SQL and web services.

What does it mean? And if you know, what are its origins?

flag

5 Answers

vote up 12 vote down check

It's the primary key (CustomerID) of the First Customer entry in the Microsoft Northwind Demo Database

ALFKI   
Alfreds Futterkiste 
Maria Anders    
Sales Representative    
Obere Str. 57   Berlin		
12209   
Germany 
030-0074321 
030-0076545
link|flag
Ha! I thought I was missing something, reviewing code and thought I was losing it. – LuckyLindy Aug 12 at 0:17
vote up 9 vote down

It's the unique key of "Alfreds Futterkiste", the first "Customers" table entry in Microsoft's "Northwind" sample database that ships with SQL Server.

link|flag
vote up 8 vote down

'ALFKI' is the primary identifier of a known Customer record in the Northwind sample Database from Microsoft.

It is used here and there almost as "foobar" is used as a canonical variable name.

link|flag
vote up 1 vote down

It's a sample customer in Microsoft supplied Northwind database (used for tests)

link|flag
vote up 1 vote down

Customer key from the Northwind sample database that Microsoft used over the years.

link|flag

Your Answer

Get an OpenID
or

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