What is the correct syntax for saying you want any record? I believe you could just delete the "where" clause altogether, but I want to make that part of the query variable, and it may not always be "any". Is there a way to do this, or do I have to just delete the where clause?
I'd want the code to read something like this:
SELECT member_id, member_info, member_title, Member_created
FROM tbl_member_table_1
Where member_id = any
;
I'd want the code to read something like this:
SELECT member_id, member_info, member_title, Member_created
FROM tbl_member_table_1
Where member_id = any
;