Answer the question
In order to leave comments, you need to log in
SQL: How to fetch data with missing field values?
There are two tables: users(fields: id, login, password, email) and users_online(fields: id_user, last_time).
I make a selection according to the following SQL query:
SELECT *
FROM users, users_online
WHERE (
users.id = users_online.id_user
)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question