quick SQL definition needed

It matches all fields in a table, e.g.
Code:
SELECT * FROM `table`
will expand to
Code:
SELECT `field1`, `field2`, `field3` FROM `table`
for a table with fields called field1, field2 and field3.
 
Back
Top Bottom