
October 4th, 2004, 05:15 PM
|
|
Contributing User
|
|
Join Date: May 2004
Posts: 58

Time spent in forums: 13 h 31 m 26 sec
Reputation Power: 5
|
|
In MSAccess, Memo Field being trunicated!
Hey guys. I have a SQL query I'm trying to create. It's nice and dandy, but I have a memo field that's being trunicated to 256 characters.
SQL is something like this:
Code:
Select distinct `group`,sortorder,HideLabel,category,img,Description,Null as num,Null as subcat
from catalogimages
where Inact=0 and subcateg is NULL
group by `group`,sortorder,HideLabel,category,img,Description
order by `group`,sortorder,category
Description would be the memo field.
Is the 'GROUP BY' clause even necessary here?
I'm also willing to bet that the 'DISTINCT' clause might not be necessary.
Any help would be greatly appreciated.
|