mainokset
PostgreSQL SELECT statement is käytetään tietojen hakemiseen Tietokantataulukosta, joka palauttaa tiedot tulostaulukon muodossa. Näitä tulostaulukoita kutsutaan tulosjoukoiksi.
Syntax
perus syntaksi VALITSE lausunto on seuraava −
SELECT column1, column2, columnN FROM table_name;
Tässä, column1, column2…ovat taulukon kentät, joiden arvot haluat noutaa.,”>
Example
Consider the table COMPANY having records as following −
the following is an example, which would fetch ID, Name and Salary fields of the customers available in CUSTOMERS table −
testdb=# SELECT ID, NAME, SALARY FROM COMPANY ;
This would product the following result −
id | name | salary ----+-------+-------- 1 | Paul | 20000 2 | Allen | 15000 3 | Teddy | 20000 4 | Mark | 65000 5 | David | 85000 6 | Kim | 45000 7 | James | 10000(7 rows)
Jos haluat hakea kaikki asiakkaiden kentät taulukosta, käytä seuraavaa kyselyä −
testdb=# SELECT * FROM COMPANY;
tämä tuottaisi seuraavan tuloksen −
mainokset
div >