If someone creates a SQL query string like this
sql = "SELECT * FROM table WHERE name = '" & input & "';"
then if the input is
input = "John'; DELETE FROM table WHERE 'x'='x"
The resulting SQL will be
SELECT * FROM table WHERE name = 'John'; DELETE FROM table WHERE 'x'='x';
It will contain two SQL statements. The second one can then do about anything the injector wants.
There are two possibilities to prevent this to happen.
1
Escape the single quotes in the input
sql = "SELECT * FROM table WHERE name = '" & Replace(input, "'", "''") & "';"
turning the bad input into a part of the string
SELECT * FROM table WHERE name = 'John''; DELETE FROM table WHERE ''x''=''x';
2
Use parameters instead of string concatenation
cmd = new Command("SELECT * FROM table WHERE name = @n")
cmd.AddParameter("@n", input)
result = cmd.Execute()
The details depend on the database, the database access technology and the programming language used. My examples have to be understood as pseudo code.