SQLAI.ai

encontrar usuario con email johndoe@example.org

I understand that you want to find a user with the email "johndoe@example.org". Here's the SQL statement for:

            
SELECT * FROM users WHERE email = 'johndoe@example.org';

This statement will select all columns from the "users" table where the "email" column matches the given email address. Make sure to replace "users" with the actual table name containing user information in your database.

  • Public
  • ·
  • Tue, 11 Apr 2023 09:25:02 GMT