Click here to Skip to main content
15,896,912 members
Home / Discussions / Database
   

Database

 
GeneralRe: Dynamically Add Column Name Pin
MadDashCoder29-Apr-15 13:43
MadDashCoder29-Apr-15 13:43 
GeneralRe: Dynamically Add Column Name Pin
Corporal Agarn30-Apr-15 1:48
professionalCorporal Agarn30-Apr-15 1:48 
GeneralRe: Dynamically Add Column Name Pin
Richard Deeming30-Apr-15 1:52
mveRichard Deeming30-Apr-15 1:52 
GeneralRe: Dynamically Add Column Name Pin
Corporal Agarn30-Apr-15 6:38
professionalCorporal Agarn30-Apr-15 6:38 
AnswerRe: Dynamically Add Column Name Pin
Corporal Agarn29-Apr-15 5:37
professionalCorporal Agarn29-Apr-15 5:37 
GeneralRe: Dynamically Add Column Name Pin
MadDashCoder30-Apr-15 6:11
MadDashCoder30-Apr-15 6:11 
QuestionStarting a SSIS 2012 DTSX package without validating it? Pin
Dr Miroslav Stimac29-Apr-15 1:39
professionalDr Miroslav Stimac29-Apr-15 1:39 
AnswerRe: Starting a SSIS 2012 DTSX package without validating it? Pin
Snorri Kristjansson22-May-15 1:39
professionalSnorri Kristjansson22-May-15 1:39 
Questiondatabase Pin
surender singh28-Apr-15 22:01
surender singh28-Apr-15 22:01 
AnswerRe: database Pin
Richard MacCutchan28-Apr-15 23:05
mveRichard MacCutchan28-Apr-15 23:05 
AnswerRe: database Pin
Richard Deeming29-Apr-15 1:55
mveRichard Deeming29-Apr-15 1:55 
QuestionMySQL Server does not show up in Installer Pin
QuickBooksDev28-Apr-15 0:26
QuickBooksDev28-Apr-15 0:26 
AnswerRe: MySQL Server does not show up in Installer Pin
Herman<T>.Instance29-Apr-15 9:57
Herman<T>.Instance29-Apr-15 9:57 
QuestionDoubt in oralce table Pin
Balaji Naidu27-Apr-15 9:39
Balaji Naidu27-Apr-15 9:39 
QuestionRe: Doubt in oralce table Pin
Richard Deeming27-Apr-15 10:21
mveRichard Deeming27-Apr-15 10:21 
AnswerRe: Doubt in oralce table Pin
Balaji Naidu27-Apr-15 10:26
Balaji Naidu27-Apr-15 10:26 
AnswerRe: Doubt in oralce table Pin
Sascha Lefèvre27-Apr-15 15:15
professionalSascha Lefèvre27-Apr-15 15:15 
QuestionOrder By Pin
jkirkerx26-Apr-15 11:57
professionaljkirkerx26-Apr-15 11:57 
AnswerRe: Order By Pin
David Mujica27-Apr-15 3:37
David Mujica27-Apr-15 3:37 
GeneralRe: Order By Pin
jkirkerx27-Apr-15 6:40
professionaljkirkerx27-Apr-15 6:40 
QuestionBetter way of matching a customer address Pin
jkirkerx24-Apr-15 6:25
professionaljkirkerx24-Apr-15 6:25 
I'm trying to find a better way of matching an address. So I was thinking, the credit card processors use the street address 1 and zip or postal code to do a AVS match, and perhaps I should just copy that idea.

I wrote this, sort of copied it and made some edits
But I can't get it right. I can't figure out where to place my input to match against.
DECLARE @PostalCode VarChar(12), @CustomerID Int, @StreetAddress1 VarChar(80);
SET @PostalCode = '92648';
SET @CustomerID = 5;
SET @StreetAddress1 = '18751 Park Haven Lane';
SELECT * 
FROM CUSTOMER_SHIPPING_ADDRESS
WHERE LEFT(@StreetAddress1, 5) IN ( 
 SELECT LEFT(StreetAddress1, 5) 
 FROM CUSTOMER_SHIPPING_ADDRESS
 GROUP BY LEFT(StreetAddress1, 5 ) 
 HAVING COUNT(*) > 1 
) 
AND PostalCode = @PostalCode 
AND CustomerID = @CustomerID 

AnswerRe: Better way of matching a customer address Pin
jkirkerx24-Apr-15 6:40
professionaljkirkerx24-Apr-15 6:40 
GeneralRe: Better way of matching a customer address Pin
PIEBALDconsult24-Apr-15 7:47
mvePIEBALDconsult24-Apr-15 7:47 
GeneralRe: Better way of matching a customer address Pin
jkirkerx24-Apr-15 12:31
professionaljkirkerx24-Apr-15 12:31 
GeneralRe: Better way of matching a customer address Pin
PIEBALDconsult24-Apr-15 12:36
mvePIEBALDconsult24-Apr-15 12:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.