Tagged Questions
2
votes
12answers
329 views
Select uniques, and one of the doubles
I have a table with columns A, B and C.
Column A might have duplicates.
I need a query that will get me a resultset with unique values in column A, and I don't care which possible duplicate it takes.
...
1
vote
4answers
605 views
mssql_bind empty string converting to NULL
I am currently using SQL Server 2000 Stored Procedures with PHP. Following the PHP doc, I use mssql_bind to assign value of parameters and then execute the Stored Procedure.
The problem is that I got ...
0
votes
1answer
70 views
Workaround for DELETE … LIMIT clause (SQL)
I am working on a database query abstraction layer that supports SQLite.
Unfortunately, SQLite does not support the LIMIT clause in DELETE (and UPDATE etc.) queries - except if compiled with a ...
0
votes
1answer
97 views
Add 2 extra columns to an excel file
LS,
Since the Microsoft ODBC Excel Driver doesn't support ALTER TABLE/DELETE FROM(/UPDATE?) statements, I'm using alternative ways of getting the right data in the right place.
I still have one ...