Answer Posted / shikha grover
Select date_format(curdate(),'%M') ;
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
what is the difference between between and in operators in mysql?
How do I free up space in mysql?
What is difference between oracle and mysql?
What is the difference between a heap table and temporary table?
How you can create a trigger in mysql?
How to Recover a MySQL root password. Stop the MySQL server process. Start again with no grant tables. Login to MySQL as root. Set new password. Exit MySQL and restart MySQL server.
What is root password?
How to insert dynamic values in mysql using php?
How do you name a table?
What is mysql sleep process?
What is the limitation of mysql?
What is session variable in mysql?
How do I run mysql on a mac?
Is mysql frontend or backend?
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