Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking at a sql statement that looks like this:

...
AND col2_.col_date >= :1
AND col2_.col_date <= :2
...

and I have no idea what :1 and :2 does??

Can someone enlighten me,

Thanks, :)

share|improve this question
"Which SQL"? I am guessing place-holders of sorts. – user166390 Nov 17 '10 at 3:24
possible duplicate of What does the colon sign ":" do in a SQL query? – OMG Ponies Nov 17 '10 at 3:30
postgres sql, so place-holders can be in numbers? – Aion Nov 17 '10 at 3:30
@OMG Ponies I actually read that post and I thought there is a difference between :number and :string/name – Aion Nov 17 '10 at 3:31
1  
BIND variables work of ordinal position in relation to all the BIND variables in the query, starting at the first characters of the statement (IE: SELECT/INSERT/UPDATE/DELETE) -- naming them is only informational to those who support them. – OMG Ponies Nov 17 '10 at 3:52
show 3 more comments

3 Answers

up vote 10 down vote accepted

They're placeholders in a parametrized query, waiting for the program to come along and supply the parameters.

share|improve this answer
In what context? – user166390 Nov 17 '10 at 3:28

There are parameters, specified when running the query - rather than having the date as text directly in the query, they're parameters injected when the query is run. What you're seeing are the first and second placeholders...the syntax varies between servers and providers. For example sometimes you'll see them names instead of numbered, etc.

share|improve this answer
In what context? – user166390 Nov 17 '10 at 3:27
2  
@pst - Can you clarify your question? – Nick Craver Nov 17 '10 at 3:28

These are placeholders, but not in SQL, only in your programming language that constructs the SQL-string. In SQL (PostgreSQL anyway) you have to use numbered placeholders $1, $2, etc. Check the PostgreSQL-manual for PREPARE or the PHP-manual for pg_query_params().

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.