EdgarsK Posted March 23, 2010 Report Share Posted March 23, 2010 Sveiki, jautājums tāds neikdienišķš. Man ir 2 tabulas tabula1 un tabula2 mysql vaicājums ir šāds: select * from tabula1 where id in(select id2 from tabula2 where parent='0') ir nepieciešams lai rezultāti kuri tiek atgriezti tiktu kārtoti augošā secībā vadoties pēc tabulas tabula2 kolonas seciba kas bez in() būtu select .. order by seciba. Kā to izdarīt? Quote Link to comment Share on other sites More sharing options...
l27 Posted March 23, 2010 Report Share Posted March 23, 2010 (edited) select distinct tabula1.* from tabula1 inner join tabula2 on id=id1 and tabula2.parent='0' order by tabula2.xxx Edited March 23, 2010 by l27 Quote Link to comment Share on other sites More sharing options...
EdgarsK Posted March 23, 2010 Author Report Share Posted March 23, 2010 paldies Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.