What Will Be The Output Of The Following Sql Statementp Pre #446
What will be the output of the following SQL statement?</p> <pre><code class="language-sql">SELECT 100 + 50; SELECT 100 - 50; SELECT 100 * 50; SELECT 100 / 50; SELECT 100 % 50;</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Hosting, Operators and Data Types - SQL Operators - Quiz No.1.
What will be the output of the following SQL statement?
SELECT 100 + 50; SELECT 100 - 50; SELECT 100 * 50; SELECT 100 / 50; SELECT 100 % 50;
150 50 5000 0 2
150 50 5000 0 0
150 50 5000 2 0
150 50 5000 2 2