1
vote
1answer
44 views
Matlab - problem with creating SQL query
Hi,
I'm trying to export some data from Matlab to database. I use PostgreSQL database via ODBC as follows. First, I create the connection
dbConn = database('PostgreSQL30', username,password);
If …
0
votes
1answer
29 views
nhibernate sql-query results different from direct query results
UPDATE: I've answered my question below, take a peek and let me know if you have a better way of doing this
executive summary:
when calling my sqlserver function from SQL Management Studio I get a …
0
votes
2answers
21 views
SQL Size comparison
I have a database where I check on the size, because clients may only use a certain amount of space, aswell as they may only have a certain number of 'pages', which I put in the db aswell.
I have the …
2
votes
5answers
122 views
SQL Sub-query or INNER-JOIN?
I've the two following queries:
declare @UserId as int
set @UserId = 1
-- Query #1: Sub-query
SELECT
u.[Id] ,
u.[Name] ,
u.[OrgId] AS Organization,
(SELECT o.[Name] FROM Org o WHERE …
3
votes
6answers
350 views
Deleting duplicate rows from table - SQL query
I need to delete duplicate rows from the table, like I have 3 duplicate rows in the table, my query will delete 2 rows from 3 duplicated rows.
How can I get this? Please help me.
Thanks
