|
Posted by --CELKO-- on 07/26/06 15:17
>> Hey I want to get some data from some tables but I want every field [sic] except the primary key field returned. Is this possible? <<
Just list the columns you want. If you are too lazy to type the names
yourself, you can do a "cut & paste" from the results of a schema
information query in QA.
Also, never use SELECT * in production code. Any alteration to the
table will mess you up, it provides no documentation, etc.
Professionals write code that can be maintained; amatuers take
shortcuts so they can code fast.
Navigation:
[Reply to this message]
|