SQL Where clause
I'm trying to setup a SQL query with a Where clause that have an input from the user but I still want the user to be able to select all values underneath a column if they want or a specific one. My example query looks as follows.
Select (value) from (table) where (columname) = (inputfromuser)
I don't know what to put as the input from the user if they want to see all the values contained in the table without having to choose a specific value from within the column but still have the option available.
