Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
パスワードとユーザー名を保存するためにクエリブラウザを使用してmysqlでデータベースを作成しました。ユーザーがログインの詳細を入力し、送信時にユーザー名とパスワードの組み合わせが存在するかどうかを確認するログインページを作成したい。データベースでそのユーザーのレコードを検索するクエリを起動するにはどうすればよいですか?
Select * from yourTable where user_name ='user name here' and password = 'password here';