Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

PostgreSQL Basic SELECT Statement: Query to calculate an expression


13. Write a query to calculate the expression 171*214+625.

Sample Solution:

Code:

SELECT 171*214+625 Result;

Output:

pg_exercises=# SELECT 171*214+625 Result;
 result
--------
  37219
(1 row)

Practice Online



Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a query to get the first three characters of the first name for all the employees in the employees table.
Next: Write a query to get the name, including first name and last name of all the employees from employees table

What is the difficulty level of this exercise?