Answer Posted / a.kishan kumar
mysql> select
table_schema,sum(data_length+index_length)/1024/1024 from
information_schema.tables group by table_schema;
Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is the phantom problem?
What are aggregate functions in mysql?
What is limit in mysql?
what is mysql optimization in brief?
What are the objects can be created using CREATE statement?
Is mysql distributed?
What is mysql used for?
What is the difference between procedure and function in mysql?
What are the critical issues you have resolved in your company
What is the password of mysql?
What is blob and clob?
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
Write a program using the select statement, while loop.
How to create a table?
What is a data directory?