|
From: Rex J. <re...@lv...> - 2002-05-12 15:48:10
|
At 03:50 PM 5/12/02 +0000, you wrote: >On Sun, May 12, 2002 at 01:00:30AM -0700, Steven Edwards >wrote: > > SQL: INSERT INTO modules VALUES (0, NULL, , NULL, 'ReactOS', 'ReactOS > ^ > > operating system.') > > >Doesn't something need to go there? Technically no, this form of INSERT implicitly selects all columns in the table for the insert. But, it is usually a bad idea from a maintainability point to use the abbreviated form of insert. Similarly, its bad form to use '*' as a column selector in a select statement. Rex Jolliff re...@lv... |