|
Posted by <talthen.z-serwera.o2 on 10/11/40 11:53
Hello,
I have records that have many columns. Most of them are of type INT or
VARCHAR, but a few columns are pretty big (TEXT) (like COLUMN1). When I do:
SELECT * FROM TABLE
it takes a lot of time, but I don't need data from COLUMN1 and don't want to
write code like this:
SELECT column2,column3,....column20 from TABLE
I would rather do something like:
SELECT (ALLCOLUMNS BUT COLUMN1) FROM TABLE
How to write such thing for MySQL?
Regards,
Talthen
Navigation:
[Reply to this message]
|