SQL : SELECT (Read)
Basics
Get all records and all columns
SELECT * FROM z_robsTestTable
Get 1 records and a few select columns
SELECT primaryid, name FROM z_robsTestTable
WHERE primaryid = 1
Get all records and all columns
SELECT * FROM z_robsTestTable
Get 1 records and a few select columns
SELECT primaryid, name FROM z_robsTestTable
WHERE primaryid = 1