Hello all,
2 tables:
elements textfields
------------- ----------------
id (num) -----| typeid (num)
name (nvarchar) |---->ownerid (num)
texto (text)
an element owns a text field like version(typeid=3) or path (typeid=1)...
My tiny query:
"select distinct texto from textfields where typeid=3"
I want to catch all different versions, but it doesn't work because text type doesn't support distinct but i can't change the type, this is not my DB...
Any idea?? thanx a lot!
Note: the DB is SQLServ, but i'd like to link it later with access.
2 tables:
elements textfields
------------- ----------------
id (num) -----| typeid (num)
name (nvarchar) |---->ownerid (num)
texto (text)
an element owns a text field like version(typeid=3) or path (typeid=1)...
My tiny query:
"select distinct texto from textfields where typeid=3"
I want to catch all different versions, but it doesn't work because text type doesn't support distinct but i can't change the type, this is not my DB...
Any idea?? thanx a lot!
Note: the DB is SQLServ, but i'd like to link it later with access.