[SOLVED] Â MYSQL subquery problem |
12/13/2013 12:30:45 PM |
PHPRunner General questions | |
P
prattster1874 author
Can anyone give me a hint here, this mysql query displays nothing: |
|
![]() |
Admin 12/13/2013 |
I'm afraid there is not enough info. |
P
|
prattster1874 author 12/13/2013 |
I'm afraid there is not enough info. What are you trying to achieve using this query? Show us the desired output.
|
![]() |
Admin 12/13/2013 |
I don't think this is possible this way. Your subqueries return more than one row of data meaning you cannot use them as a part of SELECT list. SELECT ws1,ws2,ws3,tbl_wip.import_date from |
P
|
prattster1874 author 12/13/2013 |
I don't think this is possible this way. Your subqueries return more than one row of data meaning you cannot use them as a part of SELECT list. You can probably try to INNER JOIN those subqueries. Sample syntax: SELECT ws1,ws2,ws3,tbl_wip.import_date from
|