Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

SQL Query Search

NinjawithPyjamas February 8, 2022

I need to search ALL projects for a particular strings (there are too many to use the GUI) - I have access to the backend SQL DB but i am struggling to find where the project descriptions and summaries are stored in the schema.

I am not looking for anything complicated, I just want to be able to search for these keywords and if found show me them

1 answer

0 votes
Payne
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 8, 2022

Have you looked at the project table? Something like

select * from project where pname like '%text%' or description like '%text%'

That seems like too easy an answer, so perhaps what you're trying to do is more complex than this.

Suggest an answer

Log in or Sign up to answer