Computer Science, asked by Rushque8607, 9 months ago

Write a query to display three numbers in three columns.

Answers

Answered by rajukumarbind440
5

Explanation:

SQL Basic Select Statement: Exercise-3 with Solution Write a query to display three numbers in three columns.

Answered by AskewTronics
1

The query for the above question is listed below:

Explanation:

  • "SELECT f1,f2,f3;" is a query that displays the result for the above question. (where f1,f2, and f3 can be replaced by any number).
  • For example, query for 1,2,3 is "SELECT 1,2,3;" and query for 8,9,10 is "SELECT 8,9,10;"
  • The "select query" is used to display the output. When the user writes the three numbers separated by a comma with the help of a select statement followed by a semicolon, then it will print the three numbers in three columns.

Learn more:

  • Select Query : https://brainly.in/question/4760216
Similar questions