Where do I edit my sql query?
Where do I edit my sql query?
I'm brand new and trying to get some mileage on this during my 15 day trial...I can't a SQL query anywhere. The best I have done at interacting with my own tables is to use the generator to get a CRUD set, but I need to filter the data rather than show every row. How do I do that?
This question has an accepted answers - jump to answer
Answers
You can use a
where
condition to filter the data - please see this section of the manual for PHP. If you're using another library, they will have a similar section in the documentation.Colin
ty Colin