string sql = "SELECT * FROM Users"; 

Closed due to the fact that the essence of the question is not clear to the participants 0xdb , gil9red , Sergey Glazirin , MihailPw , Alexcei Shmakov 28 May '18 at 12:07 .

Try to write more detailed questions. To get an answer, explain what exactly you see the problem, how to reproduce it, what you want to get as a result, etc. Give an example that clearly demonstrates the problem. If the question can be reformulated according to the rules set out in the certificate , edit it .

  • On this site you will find all the information you need to familiarize yourself with the SQL course. Perhaps it will help: metanit.com/sql/mysql/1.1.php - TEA

1 answer 1

string - the type of the variable (string is translated as a string, i.e. some text in the variable)

sql - variable name

SELECT * FROM Users - the value of your variable.

Read the documentation. same basic questions