Explain the difference between FLOAT, DOUBLE and REAL.
Answer Posted / mastan
Float has 4 bytes it display 8 places accuracy and double
has 8 bytes it displays 16 places accuracy.
| Is This Answer Correct ? | 7 Yes | 6 No |
Post New Answer View All Answers
Explain the difference between mysql_fetch_array(), mysql_fetch_object()?
Why should I use mysql?
How many rows can a mysql table hold?
How will you export tables as an xml file in 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
How to convert numeric values to character strings?
What is the phantom problem?
How can you import tables from a sql file into a database by using the mysql client?
What are the differences between char and varchar?
What is truncate in mysql?
How can you count the total number of records of any table?
What tools available for managing mysql server?
What is trigger in mysql with example?
Is mysql better than oracle?
How to create and drop view in mysql?