Link to home
Start Free TrialLog in
Avatar of fosiul01
fosiul01Flag for United Kingdom of Great Britain and Northern Ireland

asked on

need help to join 3 mysql query in one(pure mysql query)(urgent)

Ref: unsolved solution:https://www.experts-exchange.com/questions/27667370/need-help-to-join-mysql-query-pure-mysql-query.html

hi,
bellow statement will give output like this

mysql> SELECT THREAD_ID, EVENT_ID, EVENT_NAME, SOURCE, TIMER_START, OBJECT_INSTANCE_BEGIN, OPERATION FROM EVENTS_WAITS_CURRENT WHERE THREAD_ID IN(SELECT LOCKED_BY_THREAD_ID FROM MUTEX_INSTANCES WHERE LOCKED_BY_THREAD_ID IS NOT NULL)\G
*************************** 1. row ***************************
            THREAD_ID: 126
             EVENT_ID: 605760540
           EVENT_NAME: wait/io/file/innodb/innodb_data_file
               SOURCE: fil0fil.c:4509
          TIMER_START: 5985772299618636
OBJECT_INSTANCE_BEGIN: 139829830175456
            OPERATION: write
1 row in set (0.44 sec)


now if i run another query ..

 desc threads;
+----------------+--------------+------+-----+---------+-------+
| Field          | Type         | Null | Key | Default | Extra |
+----------------+--------------+------+-----+---------+-------+
| THREAD_ID      | int(11)      | NO   |     | NULL    |       |
| PROCESSLIST_ID | int(11)      | YES  |     | NULL    |       |
| NAME           | varchar(128) | NO   |     | NULL    |       |
+----------------+--------------+------+-----+---------+-------+
3 rows in set (0.00 sec)

mysql> select processlist_id from threads where thread_id=126
    -> ;
+----------------+
| processlist_id |
+----------------+
|            109 |
+----------------+
1 row in set (0.00 sec)


now what i want is :
insteads of run 2 different query, how can i  add  2nd select statement in to first statement so that it add process_list in to the first query's output l.. . so when i execute first query , the output will be :

*************************** 1. row ***************************
            THREAD_ID: 126
             EVENT_ID: 605760540
              processlist_id:109
           EVENT_NAME: wait/io/file/innodb/innodb_data_file
               SOURCE: fil0fil.c:4509
          TIMER_START: 5985772299618636
OBJECT_INSTANCE_BEGIN: 139829830175456
            OPERATION: write



Thanks for your help..
Avatar of Aegil
Aegil
Flag of United Kingdom of Great Britain and Northern Ireland image

SELECT EVENTS_WAITS_CURRENT .THREAD_ID, threads.processlist_id, EVENTS_WAITS_CURRENT .EVENT_ID, EVENTS_WAITS_CURRENT .EVENT_NAME, EVENTS_WAITS_CURRENT .SOURCE, EVENTS_WAITS_CURRENT .TIMER_START, EVENTS_WAITS_CURRENT .OBJECT_INSTANCE_BEGIN, EVENTS_WAITS_CURRENT .OPERATION FROM EVENTS_WAITS_CURRENT, threads WHERE THREAD_ID IN(SELECT LOCKED_BY_THREAD_ID FROM MUTEX_INSTANCES WHERE LOCKED_BY_THREAD_ID IS NOT NULL) AND threads.THREAD_ID=EVENTS_WAITS_CURRENT.THREAD_ID\G

Open in new window


something like that should work.
Avatar of fosiul01

ASKER

hi but it saying

ERROR 1052 (23000): Column 'THREAD_ID' in IN/ALL/ANY subquery is ambiguous
ASKER CERTIFIED SOLUTION
Avatar of Aegil
Aegil
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thats great thanks , it works..

is there any way to join those table via some other join example : left or right ???
or thats the only way i can join ??
yeah, you should be able to do left / right joins,

I guess it would be from threads left join threads on threads.THREAD_ID=EVENTS_WAITS_CURRENT.THREAD_ID
or something similar. It depends on how your database is setup.  I'm not great on the joining config though myself, if you need further help on that maybe there are some other guys with better db knowledge here .
[ERROR 1052 (23000): Column 'THREAD_ID' in IN/ALL/ANY subquery is ambiguous
This may be solved by using the table.column AS name notation when referring to the ambiguous columns.