how many table created when we create a table in mysql?
Answer Posted / bhas
3 tables
1.table structure(.frm)
2.table data(.myd)
3.table index(.myi)
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How can you add and remove any column of a table?
Is mysql written in c?
How to create a new table by selecting rows from another table in mysql?
What is use of mysql?
How to get help information from the server?
Is mysql same as mariadb?
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 bigint in mysql?
What is the difference between char and varchar?
How do I edit a table in mysql?
How does select query work?
What are the 'mysql' command line options?
What is mysql in dbms?
write a command to view the content of the table
What is mysql and why it is used?