Search Results

0
votes
4answers
369 views

Why does this MySQL function return null?

Description: the query actually run have 4 results returned,as can be see from below, what I did is just concate the items then return, but unexpectedly,it's null. I thi …
-1
votes
7answers
309 views

mysql limit inside group?

I want to limit the size of records inside a group, and here is my trial, how to do it right? mysql> select * from accounts limit 5 group by type; ERROR 1064 (42000): You have an …
1
vote
3answers
224 views

How to fetch result from MySQL row with multiple same-name columns with PHP?

select * from A left join B on A.columnc=B.columnd results returned by above SQL will include both columns of A and B. And what if A and B have some columns with t …
0
votes
3answers
128 views

Insert once, but two records created in MySQL

for($i = 1 ; $i <= 3; $i++) { if(!empty($_POST['fl' . $i])) { $dml = "insert into flAptitude(accountId,language,qualification,certificate) value($accountId,'" . $_POST['fl' …
0
votes
4answers
90 views

How to update multiple rows in the same table of MySQL with PHP?

If only one row with a distinct field is to be updated,I can use: insert into tab(..) value(..) on duplicate key update ... But now it's not the case,I need to upd …
0
votes
3answers
51 views

Why only one record after union?

mysql> select count(id) total from applicants; +-------+ | total | +-------+ | 0 | +-------+ 1 row in set (0.00 sec) mysql> select count(id) total from jobs; +-------+ | total | …
0
votes
3answers
155 views

How to calculate interval between datetime in MySQL?

For example,how to calculate the interval between these two datetime: 2009-09-18 00:00:00 2009-10-17 00:00:00 EDIT I mean to get the interval in the …
0
votes
2answers
111 views

How to get unix timestamp interval between two datetime values most efficiently in MySQL?

This way surely works,but it calls UNIX_TIMESTAMP 2 times: mysql> select UNIX_TIMESTAMP(now()) - UNIX_TIMESTAMP('2009-09-23 22:07:42'); +----------------------------------------- …