Another newbie question:
How can I check a table column to see if a particular value exists in that column (in any row)?
For example, I want to check my employees table to see if "Joe" exists in any row of the name column.
If it doesn't exist, I want to add a new row for "Joe".
If it does exist, I want to display a message saying it exists.
I just can't seem to figure out the easiest way to code the if statement. Thanks.