Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
1k views

ANSI vs. non-ANSI SQL JOIN syntax

I have my business-logic in ~7000 lines of T-SQL stored procedures, and most of them has next JOIN syntax: SELECT A.A, B.B, C.C FROM aaa AS A, bbb AS B, ccc AS C WHERE A.B = B.ID AND B.C = C.ID ...
4
votes
1answer
135 views

Is Oracle's syntax diagram for PL/SQL blocks wrong?

I suspect that the syntax diagram for a plsql_block as given in the Oracle® Database PL/SQL Language Reference for Relese 2 is wrong. (For reference, here's the current link to that document) The ...
4
votes
5answers
189 views

mysql: what does 'r' mean?

I've been going through some code and repeatedly see the letter 'r' in queries, and I've never seen it before. I'm no mysql guru and cannot find references on the web that really make sense in this ...
3
votes
5answers
51 views

SQL: Availability of tables for joins within the FROM

Thanks for reading. Not really looking for a solution here, since there are a few ways around it. Rather, I'm looking for an explanation of why. This has the same result for both SQL Server and ...
3
votes
3answers
324 views

VLOOKUP-style range lookup in T-SQL

Here's a tricky problem I haven't quite been able to get my head around. I'm using SQL Server 2008, and I have a sparse range table that looks like this: Range Profession ----- ---------- 0 ...
3
votes
2answers
62 views

php mysql syntax error

I am fighting with a syntax error and I can't really find the problem. this is my query $res2 = mysql_query("SELECT * FROM wp_postmeta PM1 WHERE PM1.meta_key = ...
3
votes
1answer
302 views

SQL Server 2008: Fill multiple T-SQL variables from one SELECT query?

To fill one variable with a value from a query I can write following: SET @TargetID = (SELECT TOP 1 ID FROM @bigDataSet ORDER BY date DESC) To fill multiple variables from this query, eg. something ...
3
votes
3answers
164 views

Question on sql syntax: *=

I have some older (broken) code that has a join using a *= table1.ID *= table2.ID Is this a left outer join or a right outer join? (My error message indicates it is one of those)
3
votes
2answers
99 views

IN statement in result expression in CASE THEN expression

Is it possible to use IN in CASE..THEN ? WHERE record.field = CASE WHEN @flag = 1 THEN a WHEN @flag = 2 THEN IN (b, c) END Or how to rewrite such condition?
3
votes
4answers
373 views

When dropping a constraint will the supporting indexes also be dropped?

I am trying to memorize some sql syntax and I have gotten the ALTER TABLE ADD CONSTRAINT syntax down. I believe I am correct when I say that when you use this syntax to add a FOREIGN KEY or PRIMARY ...
3
votes
3answers
126 views

SQL Syntax with AS and ORDER BY in nested queries

I have a query with the following syntax: select x.a as a, x.b as b, x.c as c from (select distinct a from foo order by y) as x left join zzz.... left join yyy...; I want to now put in ...
3
votes
6answers
5k views

Create a new db user in SQL Server 2005

how do you create a new database user with password in sql server 2005? i will need this user/password to use in the connection string eg: uid=*user*;pwd=*password*;
2
votes
6answers
144 views

How to copy a row with every column except identity column (SQL Server 2005)

My code: SELECT * INTO #t FROM CTABLE WHERE CID = @cid --get data, put into a temp table ALTER TABLE #t DROP COLUMN CID -- remove primary key column CID INSERT INTO CTABLE SELECT * FROM ...
2
votes
2answers
62 views

What is this tsql “method”?

Where can I find info on this tsql "method" .query()? I just ran across it the other day. SELECT ( SELECT top 10 * from something FOR XML PATH, ELEMENTS, TYPE ).query('for $e in row ...
2
votes
2answers
68 views

Query help - joining two tables with subset based on column values

Lets say I have two tables as such: People Id Name FirstDate LastDate -- -------- --------- -------- A1 Bob 1/1/2007 5/6/2007 A2 Joe 1/4/2008 9/1/2008 .. .. ...
2
votes
4answers
194 views

Embed a query and sub Query within a sql view (diff time in hours and min.)

I want to display for the user how long ago this record was added. (Like "0 Days 5 Hours 6 Min.") so i need to take the total number of min. and make the math. I did it in c# but now I need to do it ...
2
votes
1answer
55 views

SQL Syntax Challenge

I have two tables, one containing a list of different options users can select from. For example: tbl_options   id_option   option The next table I use to store which of these ...
2
votes
6answers
753 views

Can I add a not null column without DEFAULT value

Can I add a column which is I specify as NOT NULL,I don't want to specify the DEFAULT value but MS-SQL 2005 says: "ALTER TABLE only allows columns to be added that can contain nulls, or have a ...
2
votes
3answers
166 views

How to join two tables mysql?

I have two tables: services id client service and clients id name email How to list table service and bring together the customer name that the customers table? field customer services ...
2
votes
2answers
1k views

SQL CASE [Column] WHEN IN ('case1', 'case2') THEN 'oops' END?

Is there a way to check a CASE when it's in an array: SELECT CASE [Option] WHEN IN (1, 3, 99) THEN 'Wrong option' ELSE 'You go!' END
2
votes
4answers
1k views

SQL Server 2005 Syntax Help - “Select Info based upon Max Value of Sub Query”

The objective is below the list of tables. Tables: Table: Job JobID CustomerID Value Year Table: Customer CustomerID CustName Table: Invoice SaleAmount CustomerID The Objective Part 1: ...
1
vote
2answers
77 views

Trouble putting together mysql query

I'm using the following mysql query to return some data from my database. Currently only the cities table has anything in it, and I have noticed that this query will only return the first matching ...
1
vote
1answer
157 views

ERROR: syntax error at or near “SET”

UPDATE m_price SET pricelist=15.159, pricestd=14.3184 WHERE m_product_id = 1000332 ERROR: syntax error at or near "SET" i am getting this error in POSTGRESQL. table structure CREATE ...
1
vote
3answers
103 views

INSERT INTO syntax error SQL

I am at a loss why I am getting this error. It might something I can't see in my syntax so any help would be greatly appreciated. STATEMENT INSERT INTO pwd_review (id, request_date, being_reviewed, ...
1
vote
5answers
64 views

SQL SET statement

I am currently improving my knowledge of SQL. Currently I am trying to declare a variable by getting a value from a select statement. First Question: is this possible? Second Question: I have this ...
1
vote
2answers
368 views

Alternative to SELECT DISTINCT

I'm not too familiar with SQL queries but have noticed a significant performance decrease when running a query using Select Distinct. I'm running SQL Server 2008 R2. Below is my query: select ...
1
vote
3answers
49 views

if statment in Sql Server view

I want to set the saletype to 0 if the sale date has expired or is not yet active but only if assignDate is true. how can I build it in the view? SELECT dbo.ItemStore.SaleType, ...
1
vote
5answers
142 views

Is Sql syntax per DataBase engine (jdbc)

Assume that there is application that must interact with a DB of more than on type (i.e. MySql, MSSQL etc). To do this. there is a layer between the application and the DB (whatever type the DB is) ...
1
vote
2answers
334 views

T-SQL - parameter assignment, data retrieval and comparison in one line - is it possible?

I want to do something like this in T-SQL, but it will return an error: DECLARE @Stock int IF(SELECT @Stock = [Stock] FROM dbo.Products WHERE [ProductID] = 1) > 5 PRINT 'Stock is good: ...
1
vote
3answers
177 views

In SQL syntax, is 'from' in 'delete from' optional if you plan to use 'where'?

I am new to SQL. We have some code that should work on SQL Server 2005/2008, Oracle 10 as well as Sybase. I was writing a script to try to figure out which tables a given stored procedure modifies ...
1
vote
6answers
135 views

How to? Correct sql syntax for finding the next available identifier

I think I could use some help here from more experienced users... I have an integer field name in a table, let's call it SO_ID in a table SO, and to each new row I need to calculate a new SO_ID based ...
1
vote
4answers
69 views

MYSQL syntax error

HI everyone i tried for 3 days and i'm not able to solve this problem. This is the codes and i have went through it again and again but i found no errors. I tried at a blank page and it worked but ...
1
vote
2answers
71 views

How to you WEIGHT returned values by a Group By value

I am trying to determine a SCORE from 11 rows in a table. Those 11 rows are being aggregated into five rows using a ScoringCategoryID column as follows... ScoringCategoryID CategoryScore ...
1
vote
5answers
643 views

SQL Sub-query — Select JobID with a maximum JobValue

This seems like an easy thing, but I'm drawing a blank. Select * from .... inner join ( select JobsID, Value from Jobs where Value **is the highest** ) as MaxJob on MaxJob.CustID = A.CustID ...
0
votes
2answers
50 views

How to put multiple batches into a single logical block

I am writing a script that needs to do something like this: IF [CONDITION] BEGIN --EXECUTE LOADS OF BATCHES (I.E. BLOCKS OF CODE WITH 'GO' AT THE END) END This appears not to be allowed. The GO ...
0
votes
2answers
62 views

Sql syntax to always get one

SELECT dbo.Calls.Description, dbo.TicketRead.IsRead, dbo.TicketRead.UserID FROM dbo.Calls LEFT OUTER JOIN dbo.TicketRead ON dbo.Calls.CallID = dbo.TicketRead.TicketID WHERE dbo.TicketRead.UserID ...
0
votes
2answers
90 views

Hanging SQL Query

Can anyone point me in the right direction here? I'm updating a table at work and SQL Yog has been hung for over 30 minutes. I didn't want to hit CTRL-ALT-DELETE and terminate the task because I ...
0
votes
1answer
142 views

SQL Select: Using CTE as dataset for IN clause - syntax error

While implementing this new idea Common Table Expressions in my query: SELECT ..... FROM .... WHERE ... IN ( ;with CTEName as ( CTE syntax goes here ) SELECT .... FROM CTEName ) ...
0
votes
2answers
38 views

SQL Syntax Issue

I'm joining two tables and making a simple count, but I can't seem to rename the joined key variable into something more appropriate for the two tables, I keep getting the error '"CUSTOMER_NO" is not ...
0
votes
4answers
631 views

MERGE syntax used to UPSERT or INSERT on duplicate UPDATE

So I'm coming from MySQL where I could do INSERT on DUPLICATE UPDATE: INSERT INTO table (a,b,c) VALUES (1,2,3) ON DUPLICATE KEY UPDATE c=c+1; But now I'm using PostgreSQL and there are efforts to ...
0
votes
2answers
140 views

SQL CASE Statement (keeping the CASE statement within the WHERE clause)

I have a table named: Ext_Meeting_Status This has fields Ext_Meeting_Status_ID TEXT The values are: EXT_Meeting_Status_ID Text 1 Draft 2 Published 3 Cancelled 4 Closed How do i ...
0
votes
2answers
162 views

How to use JOIN in UPDATE query

I am very weak at join and i need to know that how can i convert following query using joins. This Query is working fine with sub queries but i need to convert it and use it making joins. update ...
0
votes
3answers
344 views

SQL Server error: Invalid column name

when some link "Make Default" is clicked the following SP is executed. What I want is that when the link "Make Default " is clicked then only the "IsDefault" record corresponding to the particular ...
0
votes
3answers
114 views

Get index of row within a group?

I have two tables: Unit: UnitId int PK Title varchar UnitOption: UnitOptionId int PK UnitId int FK Title varchar Quote: QuoteId int PK UnitOptionId int FK Title varchar I want to create a scalar ...
0
votes
3answers
143 views

MySQL syntax error in SELECT query

Hi everyone i'm getting this syntax problem and i don't see anything wrong with my query. I'm kind of new at SQL as i'm still an undergrad. I'd really appreciate it if you could help me with this. ...
0
votes
2answers
78 views

Can you define a NULL on a column definition in the Create Table statement in a Firebird DB?

I am using SQL Manager Lite to try to run a DDL Create Table script. I am new to Firebird and I don't know why it isn't working. The following script... create table Contacts ( ID ...
0
votes
2answers
140 views

What's wrong with my MySQL code here in varchar(max) line?

create table snippet( id int not null auto_increment, primary key(id), idlanguage int not null, foreign key(idlanguage) references language(id), iduser int not null, foreign key(iduser) references ...
0
votes
2answers
125 views

How do I sum the results of a select that returns multiple rows

I have a SQL Var @SumScore dec(9,4) I am trying to assign the variable as follows: SET @SumScore = ( SELECT Sum( ( SELECT SUM(etjs.CalculatedScore * ...
0
votes
2answers
345 views

Passing values to database from C# application form

A trying to insert a couple of values received from textboxes into a table in access database. I have perfectly written my statement without passing value for the primary key in the table since its ...
0
votes
1answer
231 views

Postgresql HAVING clause limitation

Why can't one use an output column in the having clause in postgresql? It doesn't change expressivity of the language anyhow, just forces people to rewrite output column definition in having clause. ...

1 2