Computer Science, asked by sreevani1309, 1 year ago

What are the different quote marks of MySQL?

Answers

Answered by MS903
0

SELECT "test", "'test'", "''test''", "te""st"; The output looks like this: Wrapping single quotes inside of double quotes will cancel out the expected behavior of the single quotes in the MySQL Query and instead treat it as part of the string. This can be seen in columns 2 and 3 in the example above.

Similar questions