i am tying to do a query like this
select * from tablename where column1 or column2 or column3 like '%input%';
but it only seems to do the query to the last column.
How can i query so it looks for that input in all three columns and outputs me with whatever matches from any of those columns.
You need to repeat the condition:
orconnects boolean expressions in SQL. It does not connect operands, such as the string comparison forlike.