Answer Posted / satya
SELECT salary FROM emp order by ordering DESC limit 2,1
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is difference between schema and table?
Write a query to fetch common records between two tables using mysql?
What are the non-standard sql commands supported by 'mysql'?
What are stored procedures and functions?
How to enter numeric values as hex numbers?
How do I create a mysql username and password?
What are the different column comparison operators in mysql?
What is pragma serially_reusable and why is it used?
What is the current version of mysql?
What is mysql aggregate functions? Explain
all the queries used in sql
What is the full meaning of mysql?
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 storage engine for mysql?
Why myisam is faster than innodb?