Viewing 10 posts - 1 through 10 (of 10 total)
roger.plowman (8/4/2016)
The mononymic would go in the given/first name and "N/A" would go in the family name.
Also, nulls are abominations, since...
August 30, 2016 at 7:58 am
Stephanie Giovannini (8/4/2016)
I would settle for having my last name properly spelled. There's some low-hanging fruit.
đŸ˜€
August 4, 2016 at 12:54 pm
ScottPletcher (8/4/2016)
You certainly don't want to just store the entire name in one long, indistinguishable string. Trying to accurately parse that out later is virtually impossible.
If there's a need...
August 4, 2016 at 11:25 am
Tom Gillies (8/4/2016)
August 4, 2016 at 8:51 am
Ernie Schlangen (8/4/2016)
August 4, 2016 at 8:46 am
robert.sterbal 56890 (8/4/2016)
For an article thorough about a lot of things, the assumption that you would name columns...
August 4, 2016 at 8:20 am
szeitzp (8/4/2016)
August 4, 2016 at 8:17 am
Tom Gillies (8/4/2016)
Thank you for the article Tung. Are you one of the many "one named" people you refer to? đŸ˜‰
Tom, yes indeed, my name is a mononym. I still...
August 4, 2016 at 8:15 am
BTW, that last INSERT should be:
INSERT INTO demo.Customers_5(
cst_full_name
, cst_full_name_native_language
, cst_short_name
, cst_short_name_native_language
)
VALUES ('Tyrion Lannister',N'Tyrion Lannister','Tyrion',N'Tyrion')
, ('Lee Jun-fan',N'???','Bruce',N'??')
, ('Sinéad O''Connor',N'Sinéad O''Connor','Sinéad',N'Sinéad')
, ('Cher',N'Cher','Cher',N'Cher')
, ('Nebuchadnezzar',N'????????','Nebuchadnezzar',N'????????')
, ('Gordon Matthew Thomas Sumner',N'Gordon Matthew Thomas...
August 4, 2016 at 7:44 am
Viewing 10 posts - 1 through 10 (of 10 total)