Re: using output of a subselect in LIKE/ILIKE
От | Rajesh Kumar Mallah |
---|---|
Тема | Re: using output of a subselect in LIKE/ILIKE |
Дата | |
Msg-id | 3CB5A920.9E5B95D7@trade-india.com обсуждение исходный текст |
Ответ на | Re: using output of a subselect in LIKE/ILIKE (Jeff Eckermann <jeff_eckermann@yahoo.com>) |
Список | pgsql-sql |
thanks Jeff it worked ! after adding a '%' || after LIKE though :-) WORKING SQL: SELECT branch from branches where outstation ilike '%' || (SELECT city from users join personal_account_details using(userid) where email='ratans@cal.vsnl.com') || '%'; Jeff Eckermann wrote: > SELECT branch from branches > where outstation like > (SELECT city from users join > personal_account_details > using(userid) where email='ratans@cal.vsnl.com') || > '%' > > --- Rajesh Kumar Mallah <mallah@trade-india.com> > wrote: > > Hi folks, > > > > I need to do something like : > > > > SELECT branch from branches > > where outstation like > > SELECT city from users join > > personal_account_details > > using(userid) where email='ratans@cal.vsnl.com' > > > > The above does not work for obvious reasons , but > > can anyone help me > > with the right SQL? > > > > > > regds > > Rajesh Kumar Mallah. > > > > > > > > > > __________________________________________________ > Do You Yahoo!? > Yahoo! Tax Center - online filing with TurboTax > http://taxes.yahoo.com/ > > ---------------------------(end of broadcast)--------------------------- > TIP 6: Have you searched our list archives? > > http://archives.postgresql.org
В списке pgsql-sql по дате отправления: