Please can the SQL code below be interpreted
IF @xMatchCriteria='MATCH12'
BEGIN
IF EXISTS (Select * from #InsightData where (EmailAddress=@xDCPEmailAddress ) )
BEGIN
SET @xTestMatchCriteria = @xMatchCriteria;
SELECT @xCRMCustomerId=CustomerId, @xCRMDcpCustomerId=DcpCustomerId, @xCRMPortalCustomerID=PortalCustomerID,@xCRMDcpID=DcpID, @xCRMCardNumber=CardNumber, @xCRMEmailAddress=EmailAddress, @xCRMfirtLetterFirstName=firtLetterFirstName,
@xCRMLastName=Surname,@xCRMAddressLine1=AddressLine1, @xCRMPostCode=PostCode
FROM #InsightData
where (EmailAddress=@xDCPEmailAddress )
END
ELSE
BEGIN
SET @xTestMatchCriteria='No'+@xMatchCriteria;
END
END
What is the purpose of using timestamp data type?
What is mysql_pconnect?
How do I run a query in mysql?
What is mysql server?
How do I create a new database in mysql?
Explain the difference between procedure and function in mysql?
How do I change the max connections in mysql?
How to create table with same structure of student table in mysql?
How many entries can mysql handle?
how to get only updated, deleted , inserted records after certain interval time in mysql with out using triggers...
How do I start mysql in linux?
What is difference between function and procedure in mysql?