20 Jan 2008 at 15:17 #1 dominatrix1 dominatrix1 Associate Joined 10 Jan 2006 Posts 483 qhat does the * sign mean in sql
20 Jan 2008 at 15:25 #2 Inquisitor Inquisitor Soldato Joined 12 Apr 2004 Posts 11,788 Location Somewhere 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.
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.
20 Jan 2008 at 15:26 #4 Beerbaron Beerbaron Soldato Joined 28 Feb 2006 Posts 6,044 Location Beds * = all