How can we find the number of rows in a table using MySQL?
Answer Posted / manish gupta
Mysql : - select count(*) [tablename];
PHP :- mysql_num_rows();
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
Is there a free version of mysql?
How can I see connections in mysql?
Tell us something about heap tables?
what is a cursor? : Mysql dba
Consider a scenario where you have two to three tables with thousand tuples in each of them. Now, if you have to perform a join operation between them will you choose to perform filtering of rows or transforming of rows first.
How to update info already in a table and delete a row(s) from a table.
Can you tell the difference between mysql_connect and mysql_pconnect? : Mysql dba
How to filter data from a mysql database table with php?
Explain the architecture models of SQL Server?
Is mysql a good database?
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
Can you tell the reasons for selecting lamp(linux, apache, mysql, php) instead of any other combination of software programs, servers, and operating system?
How do you use auto increment?
How would you get the current date in mysql?
How many sql ddl commands are supported by 'mysql'?