Search Results

1
vote

WHERE x IN (5) vs WHERE x = 5 … why use IN?

No, it's not a trick. The two statements: SELECT * FROM pages WHERE is_visible IN ($visibility) SELECT * FROM pages WHERE is_visible = $visibility are nearly equi …
2
votes

Is this good membership payment database schema?

I concur with the previous answers from jtyost2 and Yishai. One other note, our convention is to name Entity tables in the singular, matching the class name. That is, we name one row (we n …
0
votes

Sql Server query syntax

You've already got a variety of answers, some of them more useful than others. But to answer your question directly: No, SQL Server will not allow you to reference the column alias (define …