9951 explained code solutions for 126 technologies


postgresSelect every column from table


SELECT * FROM person;ctrl + c
SELECT * FROM

returns all columns in specified table (tabular format)

person

name of the table to select data from