I am currently working on a Sign In page for a project and I am having issues with this exception. ('Invalid column name 'password01'.) I am using Microsoft SQL and here is the select statement I am using in my C# code that is throwing this exception when executed.
"SELECT [First Name], [Last Name], [SportID], [Occupation] FROM Employee WHERE [Username] = "
+ tbxUsername.Text
+ " AND [Password] = "
+ tbxPassword.Text;