Hi there
I would need to spy all actions (specially insert/ update statements) that have been done against my db. They are carried out by a third party software and I'm trying to figure out what exactly it is doing in the db.
I hear using querry analizer is a way, but I can't figure out how...
Hmm, I see now why this question might be unprecise. What I was looking for was apparently a simple
select titel, typ from books group by titel
This works great with MySQL. Unfortunately this statement has to work on MSSQL which returns an error that I nee to use typ in the group by because...
When I write a statement like
select distinct titel, type from books
And I have two entries like
titel type
Nice book IT-book
Nice book non IT book
I'll get both entries.
How can I write a querry that applies the distinct to the title column only?
I tried...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.