Structured Query Language (SQL) is a language for managing data in relational database management systems. This tag is for general SQL programming questions; it is not for Microsoft SQL Server, nor does it refer to specific dialects of SQL on its own.

learn more… | top users | synonyms (4)

341
votes
18answers
50k views

Best way to stop SQL Injection in PHP

So specifically in a mysql database. Take the following code and tell me what to do. // connect to the mysql database $unsafe_variable = $_POST["user-input"]; mysql_query("INSERT INTO table ...
230
votes
16answers
41k views

datetime vs timestamp?

What would you recommend using between a datetime and a timestamp field, and why? (using mysql). I'm working with php on the server side.
208
votes
72answers
10k views

Can someone copyright a SQL query? [closed]

I work for a school district. Every year we have to export a list of students from our student management system and send it to a company that handles our online exams. So to do this export, we had ...
196
votes
21answers
68k views

Parameterizing an SQL IN clause?

How do I parameterize a query containing an IN clause with a variable number of arguments, like this one? select * from Tags where Name in ('ruby','rails','scruffy','rubyonrails') order by Count ...
176
votes
9answers
114k views

SQL: difference between inner and outer join

What is the difference between INNER JOIN and OUTER JOIN?
164
votes
14answers
248k views

How to SELECT * INTO [temp table] FROM [Stored Procedure]

How do I do a SELECT * INTO [temp table] FROM [Stored Procedure]? Not FROM [Table] and without defining [temp table]? Select all data from BusinessLine into tmpBusLine works fine. select * into ...
140
votes
46answers
9k views

What are the pros and cons to keeping SQL in Stored Procs versus Code

What are the advantages/disadvantages of keeping SQL in your C# source code or in Stored Procs? I've been discussing this with a friend on an open source project that we're working on (C# ASP.NET ...
136
votes
86answers
18k views

What is your most useful SQL trick to avoid writing more code? [closed]

I am intending this to be an entry which is a resource for anyone to find out about aspects of SQL that they may have not run into yet, so that the ideas can be stolen and used in their own ...
116
votes
15answers
187k views

Add column, with default value, to existing table in SQL Server

How do you add a column, with a default value, to an existing table in SQL Server 2000/2005?
106
votes
34answers
22k views

Table Naming Dilemma: Singular vs. Plural Names

Convention has it that table names should be the singular of the entity that they store attributes of. I dislike any T-SQL that requires square brackets around names, but I have renamed a Users ...
102
votes
38answers
6k views

Why do we need entity objects?

Ok, I realize I might be downvoted into oblivion for this question, especially given my stance on the matter, but I really need to see some honest, thoughtful debate on the merits of the currently ...
98
votes
7answers
87k views

SQL Server UPDATE from SELECT

In SQL server you can insert into a table using a select statement. INSERT INTO table(col,col2,col3) SELECT col,col2,col3 FROM other_table WHERE sql = 'cool' How can I update via a select as well ...
98
votes
41answers
11k views

What are the most common SQL anti-patterns?

All of us who work with relational databases have learned (or are learning) that SQL is different. Eliciting the desired results, and doing so efficiently, involves a tedious process partly ...
98
votes
17answers
31k views

SQL - How can I remove duplicate rows?

What is the best way to remove duplicate rows from a fairly large table (i.e. 300,000+ rows)? The rows of course will not be perfect duplicates because of the existence of the RowID identity field. ...
96
votes
12answers
10k views

What is the most efficient/elegant way to parse a flat table into a tree?

Assume you have a flat table that stores an ordered tree hierarchy: Id Name ParentId Order 1 'Node 1' 0 10 2 'Node 1.1' 1 10 3 'Node 2' 0 ...
95
votes
19answers
6k views

SQL to determine minimum sequential days of access?

The following User History table contains one record for every day a given user has accessed a website (in a 24 hour UTC period). It has many thousands of records, but only one record per day per ...
93
votes
22answers
4k views

Joins are for lazy people?

I recently had a discussion with another developer who claimed to me that JOINs (SQL) are useless. This is technically true but he added that using joins is less efficient than making several requests ...
90
votes
6answers
31k views

When should I use Cross Apply over Inner Join?

What is the main purpose of using CROSS APPLY? I have read (vaguely, through posts on the Internet) that cross apply can be more efficient when selecting over large data sets if you are partitioning. ...
87
votes
23answers
5k views

is email address a bad primary key

Is email address a bad candidate for primary when compared to auto incrementing numbers. Our web application needs the email address to be unique in the system. So, I thought of using email address ...
86
votes
14answers
50k views

SQL - when should you use “with (nolock)”

Can someone explain the implications of using "with (nolock)" on queries, when you should/shouldn't use it? For example, if you have a banking application with high transaction rates and a lot of ...
85
votes
42answers
4k views

Why no love for SQL?

I've heard a lot lately that SQL is a terrible language, and it seems that every framework under the sun comes pre-packaged with a database abstraction layer. In my experience though, SQL is often ...
85
votes
21answers
7k views

Good reasons NOT to use a relational database?

Can you please point to alternative data storage tools and give good reasons to use them instead of good-old relational databases? Imo most applications rarely use full power of SQL, it would be ...
84
votes
14answers
23k views

Wanted: Good examples of Scala database persistence

I would like to use Scala to persist data to a relational database, so what I am looking for are examples of CRUD operations using Scala. I would like to code on a lower level of abstraction than ...
84
votes
25answers
129k views

Fetch the row which has the Max value for a column

Table: UserId, Value, Date. I want to get the UserId, Value for the max(Date) for each UserId. That is, the Value for each UserId that has the latest date. Is there a way to do this simply in SQL? ...
81
votes
6answers
8k views

In SQL, what's the difference between count(column) and count(*)?

I have the following query: select column_name, count(column_name) from table group by column_name having count(column_name) > 1; What would be the difference if I replaced all calls to ...
80
votes
10answers
99k views

Select columns from result set of stored procedure

I have a stored procedure that returns 80 columns, and 300 rows. I want to write a select that gets 2 of those columns. Something like SELECT col1, col2 FROM EXEC MyStoredProc 'param1', 'param2' ...
79
votes
10answers
3k views

“where 1=1” statement [closed]

Possible Duplicate: Why would someone use WHERE 1=1 AND <conditions> in a SQL clause? I saw some people use a statement to query a table in a MySQL database like the following: ...
78
votes
11answers
46k views

Should I use != or <> for not equal in TSQL?

I have seen SQL that uses both != and <> for not equal. What is the prefigured syntax and why? I like != because <> reminds me of Visual Basic.
77
votes
6answers
20k views

Best way to get identity of inserted row?

What is the best way to get identity of inserted row? I know about @@IDENTITY and IDENT_CURRENT and SCOPE_IDENTITY but don't understand the pros and cons attached to each. Can someone please explain ...
75
votes
15answers
17k views

Subqueries vs joins

I refactored a slow section of an application we inherited from another company to use an inner join instead of a subquery like where id in (select id from ... ) The refactored query runs about ...
71
votes
5answers
45k views

MySQL Query GROUP BY day / month / year

Is it possible I make a simple query to count how many records I have in a determined period of time like a Year, month or day, having a TIMESTAMP field, like: SELECT COUNT(id) FROM stats WHERE ...
67
votes
12answers
34k views

varchar vs nvarchar performance

I'm working on a database for a small web app at my school using SQL Server 2005. I see a couple of schools of thought on the issue of varchar vs nvarchar: Use varchar unless you deal with a lot of ...
66
votes
13answers
232k views

How do you perform an IF…THEN in an SQL SELECT?

How do I perform an IF...THEN in an SQL SELECT statement? For example; SELECT IF(Obsolete = 'N' or InStock = 'Y';1;0) as Salable, * FROM Product
65
votes
6answers
49k views

How do I limit the number of rows returned by an oracle query?

In mysql, I do this: select * from sometable order by name limit 20,10 In which case I get the 21st to the 30th rows (skip the first 20, give the next 10). The rows are selected after the order ...
65
votes
6answers
46k views

Can I concatenate multiple MySQL rows into one field?

Using MySQL, I can do something like select hobbies from peoples_hobbies where person_id = 5; and get: shopping fishing coding but instead I just want 1 row, 1 col: shopping, fishing, coding ...
65
votes
15answers
47k views

Is there a Max function in SQL Server that takes two values like Math.Max in .NET?

I want to write a query like this: SELECT o.OrderId, MAX(o.NegotiatedPrice, o.SuggestedPrice) FROM Order o But this isn't how the MAX function works, right? It is an aggregate function so it ...
64
votes
8answers
2k views

Standard use of 'Z' instead of NULL to represent missing data?

Outside of the argument of whether or not NULLs should ever be used: I am responsible for an existing database that uses NULL to mean "missing or never entered" data. It is different from empty ...
64
votes
9answers
13k views

Count(*) vs Count(1)

Just wondering if any of you guys use Count(1) over Count(*) and if there is a noticeable difference in performance or if this is just a legacy habit that has been brought forward from days gone past? ...
64
votes
10answers
11k views

What is the difference between Left, Right, Outer and Inner Joins?

I am wondering how to differentiate all these different joins ...
64
votes
7answers
67k views

SQL Server: Check if table exists

I would like this to be the ultimate discussion on how to check if a table exists in SQL Server 2000/2005 using SQL Statement. When you Google for the answer, you get so many different answers. Is ...
63
votes
5answers
137k views

SQL update from one Table to another based on a ID match

I realy hope someone can help me with this. I have a databse with Account Numbers and card Numbers that I match to a file to update any card numbers to account number so I only work with account ...
63
votes
14answers
14k views

Inner join vs Where

Is there a difference in performance (in oracle) between Select * from Table1 T1 Inner Join Table2 T2 On T1.ID = T2.ID And Select * from Table1 T1, Table2 T2 Where T1.ID = T2.ID ?
63
votes
18answers
50k views

Solutions for INSERT OR UPDATE on SQL Server

Assume a table structure of MyTable(KEY, datafield1, datafield2...) Often I want to either update an existing record, or insert a new record if it doesn't exist. essentially if (key exists) Run ...
62
votes
24answers
4k views

Doesn't Linq to SQL miss the point? Aren't ORM-mappers (SubSonic, etc.) sub-optimal solutions?

I'd like the community's take on some thoughts I've had about Linq to Sql and other ORM mappers. I like Linq to Sql and the idea of expressing data access logic (or CRUD operations in general) in ...
61
votes
4answers
6k views

What are the Options for Storing Hierarchical Data in a Relational Database?

Good Overviews Generally speaking you're making a decision between fast read times (e.g. nested set) or fast write times (adjacency list). Usually you end up with a combination of the options below ...
60
votes
22answers
5k views

Questions every good Database/SQL developer should be able to answer

I was going through Questions every good .Net developer should be able to answer and was highly impressed with the content and approach of this question and so in the same spirit, I am asking this ...
60
votes
19answers
28k views

How to request a random row in SQL?

What is the best way to request a random row in pure SQL?
60
votes
31answers
7k views

SQL - What are your favorite performance tricks? [closed]

When you have a query or stored procedure that needs performance tuning, what are some of the first things you try?
60
votes
27answers
7k views

What is the best way to avoid SQL injection attacks?

I've provided a solution for Python... please flesh this out with examples for other languages.
59
votes
23answers
4k views

Are database triggers evil? [closed]

Are database triggers a bad idea? In my experience they are evil, because they can result in surprising side effects, and are difficult to debug (especially when one trigger fires another). Often ...

1 2 3 4 5 1363