Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
It expects you to enter values for two inputs.
This is not visible in the console, so you did not designate the input text.
Write like this and see the result.
a = int(input('Первая переменная: '))
b = int(input('Вторая переменная: '))
print(a + b)
Well, the error kind of hints that you need to set aliases to the users table. How else to distinguish users from different joins? Something like this:
SELECT *
FROM games
JOIN users u1 ON games.user_id = u1.user_id
LEFT OUTER JOIN users u2 ON games.user_id_moderator = u2.user_id
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question