active questions tagged sql - Stack Overflow most recent 30 from stackoverflow.com 2010-02-09T23:06:16Z http://stackoverflow.com/feeds/tag/sql http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2233013/sql-how-do-i-refer-to-the-result-of-a-previous-query 1 SQL: How do I refer to the result of a previous query? Rising Star 2010-02-09T22:34:13Z 2010-02-09T22:47:41Z <p>Suppose I have a SQL query that looks like this:</p> <p><code>SELECT fName from employees where ssn=123456789;</code></p> <p>Suppose I want to follow the previous query with another one:</p> <p><code>SELECT fName from records WHERE ssn=123456789;</code> <code>SELECT lName from records WHERE fName=(the result of the previous query)</code></p> <p>What do I put in for <code>(the result of the previous query)</code> to make this return the last names from records where the fName matches the presumably unique record where ssn=123456789?</p> <p>I know that this is an unrealistic example, but what I'm asking is, "How do I refer to the result of my previous query?"</p> <p>BTW, if it makes any difference, I'm using MS SQL Server 2008. Thanks!</p> http://stackoverflow.com/questions/2232986/selecting-products-that-havent-been-made-in-2-years 0 Selecting products that haven't been made in 2 years Catfish 2010-02-09T22:29:21Z 2010-02-09T22:43:41Z <p>I'm trying to get the products that havn't been made in the last 2 years. I'm not that great with SQL but here's what i've started with and it doesn't work.</p> <p>Lets say for this example that my schema looks like this</p> <p>prod_id, date_created, num_units_created. </p> <p>I'll take any advice i can get. </p> <pre><code>select id, (select date from table where date &lt;= sysdate - 740) older, (select date from table where date &gt;= sysdate - 740) newer from table where newer - older </code></pre> <p>I'm not being clear enough. </p> <p>Basically i want all products that havn't been produced in the last 2 years. Whenever a product is produced, a line gets added. So if i just did sysdate &lt;= 740, it would only give me all the products that were produced from the beginning up til 2 years ago. </p> <p>I want all products that have been produced in the at least once, but not in the last 2 years. </p> <p>I hope that clears it up. </p> http://stackoverflow.com/questions/2232989/subsums-in-sql-server-2000 0 Subsums in SQL Server 2000 Dooh 2010-02-09T22:30:16Z 2010-02-09T22:40:13Z <p>Is there any nice way to get subsums in one query for data like this in sql server 2000?</p> <pre><code>Input: Date Value 2008-06-20 10 2008-08-20 20 2008-10-05 5 2008-10-09 30 Desired output: 10 --sum of 1st value 30 --sum of 1st and 2nd values.. 35 65 </code></pre> http://stackoverflow.com/questions/2226771/what-strategies-are-available-for-migrating-access-databases-to-sql-server-based 1 What strategies are available for migrating Access databases to SQL server-based applications? Tim Long 2010-02-09T04:33:22Z 2010-02-09T22:16:33Z <p>I'm considering undertaking a project to migrate a very large MS Access application to a new system based on SQL Server. The existing system is essentially an ERP application with a couple of dozen users, all sharing the Access database over the network. The database has around 300 tables and lots of messy VBA code. This system is beginning to break down (actually, it's amazing it has worked as long as it has).</p> <p>Due to the size and complexity of the Access application, a 'big bang' approach is not really feasible. It seems sensible to rope off chunks of functionality and migrate them piecemeal to the new system. During the migration process, which I expect to take several months, there may be a need for both databases to be in operation and be able to query and modify data in both systems.</p> <p>I have considered using something like the ADO.NET Entity Framework to implement a data abstraction layer to handle this, but as far as I can tell, the Entity Framework has no Access provider.</p> <p>Does my approach seem reasonable? What other strategies have people used to accomplish similar goals?</p> http://stackoverflow.com/questions/2232931/connect-w-sql-server-management-studio-to-an-domain-server-using-domain-credenti 0 Connect w/ Sql Server Management Studio to an domain server using domain credentials Iulian 2010-02-09T22:16:20Z 2010-02-09T22:16:20Z <p>Hi there,</p> <p>I have a machine that's not connected to a domain and I want to connect to server in that particular domain and I do have proper credentials to log on.</p> <p>I used runas command as follows: <strong>runas /netonly /user:domain\domain_username ssms.exe</strong> and I was able to connect to the server which otherwise I could not.</p> <p>The weird thing is in the connection window the user name is still the local one: machine\machine_local_name and of course the dropdown is disabled. On the same note, after connecting in the Object Explorer window I can see in the name of the connection that I am connected as the local username servername (SQL Server 10.0.2531 - machine\machine_local_username)</p> <p>And even if there has been created a Login in that server for domain\domain_username with necessary permissions, whenever I try to do anything that I was supposed to be allowed, for example create a stored procedure I get "permission denied" exception. It is like the management studio still runs under local credentials.</p> <p>Another weird thing is when try browsing through the tables I cannot see any, although if I create a connection in server explorer window in a VS2008 instance that was launched using the same method (runas /netonly /user:domain\domain_username devenv.exe) I am able to see the list of tables yet still not able to create a stored procedure.</p> <p>I know it sounds like a mess, but I cannot make any sense of it. Can anyone give me some hints here?</p> <p>Thanks Iulian</p> http://stackoverflow.com/questions/2232523/select-only-newest-records-from-table-and-make-this-fast-how 0 Select only newest records from table and make this FAST, how? artvolk 2010-02-09T21:06:56Z 2010-02-09T21:55:56Z <p>Good day, I have a question I'm struggling with a lot, hope somebody already found a clever solution to this (I use MySQL).</p> <p>I have table like this:</p> <pre><code>Table `log` ---------- id inserted message user_id </code></pre> <p>My goal is to select last inserted record for user and make this fast. Log table is huge (around 900k records), so my first approach was:</p> <pre><code>SELECT * FROM `log` LEFT JOIN `users` ON `users`.`id` = `log`.`user_id` WHERE `id` IN ( SELECT MAX(`id`) FROM `log` GROUP BY `user_id` ) </code></pre> <p>But it seems it calculate subquery for every row (EXPLAIN shows DEPENDENT QUERY). When I split this query for two:</p> <pre><code>SELECT MAX(`id`) FROM `log` GROUP BY `user_id` </code></pre> <p>and </p> <pre><code>SELECT * FROM `log` LEFT JOIN `users` ON `users`.`id` = `log`.`user_id` WHERE `id` IN (....ids from first query...) </code></pre> <p>It is acceptable to run. Can this be achived by one query?</p> http://stackoverflow.com/questions/2232538/city-belongsthroughcountyto-province-association-how-to-simplify-the-code 0 City belongsThroughCountyTo Province association, how to simplify the code? Paweł Mysior 2010-02-09T21:08:29Z 2010-02-09T21:29:33Z <p><strong>Tables:</strong></p> <p><code>Province hasMany County</code>, <code>County belongsTo Province</code>, <code>County hasMany City</code>, <code>City belongsTo County</code></p> <p>So basically something like: <code>City belongsThroughCountyTo Province</code></p> <p><strong>Situation:</strong></p> <p>In a search form I have a select drop down menu with provinces.</p> <p><strong>The "code":</strong></p> <p>When I list the results, I first get ids of counties that belong to the specified province, and then do a <code>City.county_id IN (array_of_counties_ids_here)</code>.</p> <p><strong>Question:</strong></p> <p>My question is, could I be doing it in a better way? Without first accessing the counties table. A simple three way join should do the trick, but I don't have an idea on how to implement it in Cake.</p> <p>Adding a <code>province_id</code> field to the cities table isn't a solution in my case (can't alter tables).</p> http://stackoverflow.com/questions/2215775/data-structure-enabling-search-by-order 0 Data structure enabling "Search by order" gilbertc 2010-02-07T03:23:26Z 2010-02-09T20:51:36Z <p>I would like to know what data structure / storage strategy I should use for this problem.</p> <p>Each data entry in the database consists of a list of multiple ordered items, such as A-B-C-D, where A, B, C, D are different items.</p> <p>Suppose I have 3 entries in a database,</p> <p>A-B-C-D</p> <p>E-F-G</p> <p>G-H-B-A</p> <p>When the user entered some unordered items, I have to find the matching ordered entry(ies) from the database. For example, if user enters A,B,G,H, I want to return G-H-B-A from the database to the user.</p> <p>What should be my data storage strategy? </p> <p>Thanks.</p> http://stackoverflow.com/questions/2231717/single-sql-query-to-check-if-either-table-contains-a-row-with-columnx 0 Single SQL query to check if either table contains a row with column=x Benju 2010-02-09T19:07:33Z 2010-02-09T20:43:02Z <p>I have 2 unrelated tables A and B which both have foreign key constraints on C. I need to run an sql query that determines if either A or B contain a given id of C. My first approach was to use the union all but A and B are not related thus it will not work.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/2229790/which-approach-would-you-use-for-this-specific-db-design-issue 3 Which approach would you use for this specific DB Design Issue ? Eoin Campbell 2010-02-09T14:34:04Z 2010-02-09T20:11:16Z <p>Just looking for opinions on the following 2 scenarios.</p> <p>We have a table where we store our outbound sms-messages. Everytime one of our services sends a premium rate message, it stores them in this table... to date, all the important information that needs to be stored has been in the same format.</p> <pre><code>SMSMessages ---------------------- ID int PK NOT NULL Identity Mobile nvarchar(50) -- the number we're sending to NetworkID int FK -&gt; Table containing networks (voda, o2, etc...) ShortcodeID int FK -&gt; Table containing our outbound shortcodes DateSent DateTime </code></pre> <p>Now one of the networks has implemented a completely new API that we need to integrate with that requires a bunch more parameters. 1 of these additional parameters is the "Command". Depending on which command we're sending, there are between 4 and 8 additional parameters we are required to send. For simplicities sake, we'll say there's only two commands... "InitialSend" &amp; "AnniversarySend"</p> <p>Obviously it would quite the horrible DB design to just add <strong>all</strong> these additional columns to the end of our existing table so... we reckon we've two options.</p> <h2>Option 1.</h2> <p>Create many new tables, specific to each command, linked back to the original table.</p> <pre><code>SMSMessages_CommandTypes --Contains "InitialSend" &amp; "AnniversarySend" + other commands -------------------------- CommandTypeID int PK Command nvarchar(50) SMSMessages_OddBallNetwork -------------------------- ID int PK, FK --&gt; SMSMessages.ID CommandTypeID int FK ---&gt; SMSMessages_CommandTypes SMSMessages_OddBallNetwork_InitialSend -------------------------------------- ID int PK, FK --&gt; SMSMessages.ID Param1 nvarchar(50) Param6 nvarchar(50) Param9 nvarchar(50) Param14 nvarchar(50) SMSMessages_OddBallNetwork_AnniversarySend -------------------------------------- ID int PK, FK --&gt; SMSMessages.ID Param1 nvarchar(50) Param2 nvarchar(50) Param7 nvarchar(50) Param9 nvarchar(50) Param12 nvarchar(50) //There are 4 other Command Types as well so 4 More Tables... </code></pre> <p>The pro's to this one according to our DBA are all purist. Each possible combination is strongly defined. The relationships are clear and it is the best performer. </p> <p>From my POV, the cons are development time, number of touch points, complex retrieval rules/procedures for messages with different command types, and lack of reusability... a new command on this Mobile Network or another network bringing in this approach requires DB Level Design and Implementation... not just code level.</p> <h2>Option 2.</h2> <p>This option is to try and design one dynamic implementation with fewer, more reusable structures.</p> <pre><code>SMSMessages_AdditionalParameterTypes ------------------------------------ ParamterTypeID int PK NOT NULL Identity ParamterType nvarchar(50) /* This table will contain all known parameters for any messages CommandName Param1 Param2 etc.. */ SMSMessages_AdditionalParameters -------------------------------- ID int PK NOT NULL Identity MessageID int FK --&gt; SMS Messages ParamTypeID int FK --&gt; SMSMessages_AdditionalParameterTypes Value nvarchar(255) </code></pre> <p>So pros and cons on this one.</p> <p>Cons: You've less obvious visibility as to what params are linked with what messages There's also a small performance issue... <strong>N</strong> inserts per message instead of just 2</p> <p>Pros: It's a hell of a lot easier to develop against (imho). You simply get a list of Parameters Names -> Values back for a given messageID</p> <p>It's also alot more reusable... if the oddball network adds a new command, a new parameter on a command or even if another network comes along and implements a similar "I want more info" API, we don't need any structural changes on our system.</p> <p><strong>SO... What would you do ?</strong></p> http://stackoverflow.com/questions/2231284/find-all-related-records 2 Find all related records BrokeMyLegBiking 2010-02-09T18:03:37Z 2010-02-09T20:09:16Z <p>I have an Order table that has a LinkedOrderID field.</p> <p>I would like to build a query that finds all linked orders and returns them in the result set.</p> <p>select OrderID,LinkOrderID from [Order] where LinkOrderID is not null</p> <p><strong>OrderID LinkOrderID</strong><br> 787016&nbsp;&nbsp; 787037<br> 787037&nbsp;&nbsp; 787786<br> 787786&nbsp;&nbsp; 871702<br></p> <p><Br> I would like a stored proc that returns the following:<Br> <strong>OrderID InheritanceOrder</strong><br> 787016&nbsp;&nbsp; 1<br> 787037&nbsp;&nbsp; 2<br> 787786&nbsp;&nbsp; 3<br> 871702&nbsp;&nbsp; 4<br> <br></p> <p>I would also like to make sure I don't have an infinite loop</p> http://stackoverflow.com/questions/346512/sql-query-of-multi-member-file-on-as400 4 SQL query of multi-member file on AS400 tmtest 2008-12-06T17:27:43Z 2010-02-09T20:04:20Z <p>On AS400 in interactive SQL in a 5250 session,</p> <pre><code>select * from myfile </code></pre> <p>returns rows from one member only when myfile has more than one member.</p> <p>How can I get rows from a specific member?</p> <p>Important: in the end I'd like to do this over JDBC with jt400 so really I want a solution that'll work there.</p> <p>Thanks.</p> http://stackoverflow.com/questions/2231903/the-best-way-to-manage-database-changes 1 The best way to manage database changes Simon 2010-02-09T19:32:24Z 2010-02-09T19:53:12Z <p>What is the best way to manage database changes? I need to have a solutions regardless the database client's language. Also I'd like to be able to use specific database features in those changes such as stored procedures, triggers and so on.</p> http://stackoverflow.com/questions/2224374/how-to-vary-connection-string-for-different-work-locations 2 How to vary connection string for different work locations Mike B 2010-02-08T19:45:03Z 2010-02-09T19:46:40Z <p>I am working on a C# 4.0, WPF 4.0, SQL 2008 project and I do work at home and in the office. I just setup SubVersion using Visual SVN per the recommendations found in other questions. The problem I am having is the connection string for the database is different for each location.</p> <p>At home I have the database on my dev system, in the office the database is on our server. Neither is exposed to the internet so I have to use both. Is there an elegant way to automatically select the correct one?</p> <p><strong>Update</strong></p> <p>I have been having ongoing issues with this and am trying to balance learning version control with getting work done on my project. I have been reading the subversion book and am fine with what it covers. My one real issue is dealing with files that need to vary between development environments <em>properly</em>. I could easily code my way around this but that seems a bit wacky to me. I do see more than a couple articles about how wacky the svn:exclude can be and it seems to me that what works at home is causing issues at work and vice-versa.</p> <p>Perhaps I just don't know enough to recognize the right answer so please point me in the right direction (I don't need you to do it for me) or up vote the best existing answer and I will continue my research.</p> <p>Thanks SO</p> http://stackoverflow.com/questions/2231519/couple-of-basic-sql-query-questions 2 Couple of basic SQL query questions Nubber 2010-02-09T18:39:10Z 2010-02-09T19:46:06Z <p>Hello,</p> <p>Basically I got a small event system going on, but I'm having a couple of strange SQL query problems. 1st one I need to find all peoples names which have signed up for all 3 events. I tried to do:</p> <pre><code>SELECT name FROM users NATURAL JOIN events WHERE events.id = '4' AND events.id = '7' AND events.id = '8' </code></pre> <p>But it returns zero rows, even tho there are users that have signed up for all 3 events</p> <p>2nd one, I need to find a people who signed up for event 4 but not for event 7 I tried:</p> <pre><code>SELECT name FROM users NATURAL JOIN events WHERE events.id = '4' AND events.id !='7' </code></pre> <p>It returns the same results as without the != mark, as it should at least be eliminating a few results.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/2224234/database-eav-pros-cons-and-alternatives 2 Database EAV Pros/Cons and Alternatives Nic Hubbard 2010-02-08T19:23:43Z 2010-02-09T19:35:01Z <p>I have been looking for a database solution to allow user defined fields and values (allowing an unlimited number). At first glance, EAV seemed like the right fit, but after some reading I am not sure anymore.</p> <p>What are the pros and cons of EAV?</p> <p><strong>Is there an alternative database method to allow user defined attributes/fields and values?</strong></p> http://stackoverflow.com/questions/2231801/sql-to-extract-matlab-date-from-postgres-db 0 SQL to extract matlab date from postgres db Marc 2010-02-09T19:19:56Z 2010-02-09T19:34:35Z <p>I'd like to construct a query to "convert" a postgresql datetime to a matlab datenum. Experience with other DBs has shown me that converting the date on the DB side is <em>much</em> faster than doing it in matlab.</p> <p>Matlab stores dates as number of days (including fractions) since an arbitrary epoch of a gregorian, non-existent date of 00-00-0000. </p> <p>On Oracle, it's simple, because Oracle stores dates internally like matlab does, but with a different epoch. </p> <pre><code>select (date_column_name - to_date('01-Jan-0001') + 365) ... </code></pre> <p>A straightforward conversion of this to PG syntax doesn't work:</p> <pre><code>select (date_column_name - date '01-Jan-0001' + interval 365) ... </code></pre> <p>I've started with a particular day in matlab, for testing:</p> <pre><code>&gt;&gt; num2str(datenum('2010-10-02 12:00')) ans = 734413.5 </code></pre> <p>I've been in and out of the pg docs all day, <code>extract</code>ing <code>epoch</code>s and <code>second</code>s, etc. And I've gotten close. Basically this gets the seconds in an interval, which I just divide by the seconds in a day:</p> <pre><code>Select cast(extract(epoch from (timestamp '2010-10-02 12:00' - timestamp '0000-01-01 23:10' + interval '2 day' ) ) as real )/(3600.0*24.0) AS MDate </code></pre> <p>answer: 734413.51111111111</p> <p>But that exhibits some bizarre behavior. Adjusting the minutes from the epoch timestamp doesn't change the answer, except at one particular minute - i.e 23:09 is one answer, 23:10 is another, and it stays the same from 23:10 to 23:59. (other hours have similar behavior, though the particular "minute" is different.)</p> <p>Any ideas? Maybe on another way to do this?</p> <p>edit: using 8.4.2</p> http://stackoverflow.com/questions/2168852/distinct-one-column-and-display-other-columns-below 1 Distinct one column and display other columns below Oliver 2010-01-30T18:09:20Z 2010-02-09T19:29:57Z <p>I am sure I am looking at this in the wrong way. </p> <p>I would like to hold a restaurant menu in a database and display it. For example, I have created a table similar to the one below: </p> <p><b>Columns:</b></p> <pre>Food_Item | Food_Description | Food_Price | Food_CAT.</pre> <p><b>Data:</b><br /></p> <p>Salad | Refreshing Salad | 5.25 | Starters<BR /> Prawn Cocktail | Lovely Prawns | 4.75 | Starters<BR /> Tomato Soup | Cream of tomatoe | 4.50 | Soups<BR /> Steak | Lovely Rump Steak | 10.95 | Mains<BR /> Fish &amp; Chips | Classc dish | 8.75 | Mains<br /></p> <p>What I am trying to achieve is a menu layout, where the food_CAT acts as the header and then the different dishes are presented below, for example:</p> <p><b>Starters</b><br /> Salad - 5.25<BR /> Prawn Cocktail - 4.75<BR /><BR /></p> <p><b>Soups</b><br /> Tomato Soup - 4.50<br /><br /></p> <p><b>Mains</b><br /> Steak - 10.95<br /> Fish &amp; Chips <br /><br /></p> <p>etc..<br /><br /></p> <p>Is there an easy way to do this, so that I don't have the food_cat header above each dish, only over the first one? I thought I could use DISTINCT, however from reading other posts, I understand it's near impossible to DISTINCT one column.</p> <p>Hope somebody can help.</p> <p>Regards, Oliver</p> http://stackoverflow.com/questions/2229986/access-sql-query-help 0 Access SQL Query Help user269561 2010-02-09T15:02:38Z 2010-02-09T19:23:04Z <p>Hi Everyone.</p> <p><em><strong>I have a query in which I need to perform using three entities listed below:</em></strong></p> <ol> <li>LU_AppName</li> <li>SDB_AppHistory</li> <li>SDB_Session</li> </ol> <p>LU_AppName has field APPNAM, SDB_AppHistory has the field STARTTIME which is date/time and also SDB_Session has field DURATION.</p> <p>I need to run an SQL query to show me Citrix APPLICATIONS which have not been used in the last 6 months.</p> <p><em><strong>At the moment I have the code below.</em></strong></p> <pre><code>SELECT dbo_LU_APPNAME.APPNAME, dbo_SDB_APPHISTORY.STARTTIME FROM dbo_LU_APPNAME INNER JOIN dbo_SDB_APPHISTORY ON dbo_LU_APPNAME.PK_APPNAMEID = dbo_SDB_APPHISTORY.FK_APPNAMEID WHERE (((dbo_LU_APPNAME.APPNAME) Like "* Citrix") AND ((dbo_SDB_APPHISTORY.STARTTIME) Between DateAdd("d",-180, Getdate()))) </code></pre> <p>I am a bit confused as I am not very good with SQL</p> <p>Can anyone please advice, if you require more info please let me know.</p> <p>Thanks, any help would be greatfull.</p> http://stackoverflow.com/questions/2230447/sql-query-to-return-columns-and-values-which-match-part-of-a-where-condition 0 SQL query to return columns and values which match part of a where condition Richard Hein 2010-02-09T16:03:54Z 2010-02-09T19:07:45Z <p>Hi all, I am trying to find out if there's a good way to get all the column names, and values for a particular row, where a part of a condition is met. That is, I want to know which fields within my huge nested AND and OR where condition, met which conditions, and their values.</p> <p>The catch is I am actually using the Dynamic LINQ API over a datatable and I will have to get it to generate that query, or do something else entirely to essentially check user-defined validation rules on some forms. If anyone has better ideas on how to approach this, I'd appreciate it.</p> http://stackoverflow.com/questions/1471995/sql-what-is-insert-into-table 0 SQL: What is INSERT INTO #table? varun 2009-09-24T14:17:28Z 2010-02-09T19:02:38Z <p>I wanted to know what does the # symbol mean? Why is it being used?</p> <p>Example:</p> <pre><code>INSERT INTO #tmpContracts (sym, contractCount) SELECT sym, COUNT(DISTINCT(fulloptionsym)) AS contractCount </code></pre> http://stackoverflow.com/questions/2231645/import-60mb-xml-file-to-sql 1 Import 60mb XML file to SQL sia 2010-02-09T18:58:39Z 2010-02-09T19:01:51Z <p>I have a 60mb XML file that has a list of products, approx 8k of them. I need to get all the products from this xml file to a SQL table. The xml file has a static name so i know what to look for. I guess i want to know about the process, what makes the most sense and least overhead.</p> <p>How?What? is the best way to do this? When do i parse the xml, so i have SQL handle it, or some other method. in the past i have used a parser in a stored proc, but the old xml files where smaller, like 1-5mb, im not sure if a 60mb xml file will work. </p> <p>Thoughts, Ideas? </p> http://stackoverflow.com/questions/861722/mysql-insert-into-table-values-vs-insert-into-table-set 1 MySQL INSERT INTO table VALUES.. vs INSERT INTO table SET Irmantas 2009-05-14T05:46:09Z 2010-02-09T18:57:26Z <p>What is main difference between <code>INSERT INTO table VALUES ..</code> and <code>INSERT INTO table SET</code>?</p> <p>Example:</p> <pre><code>INSERT INTO table (a, b, c) VALUES (1,2,3) INSERT INTO table SET a=1, b=2, c=3 </code></pre> <p>And what about performance of these two?</p> http://stackoverflow.com/questions/2189254/searching-for-keywords-in-two-mysql-columns 1 Searching for keywords in two MySQL columns Deca 2010-02-03T02:31:03Z 2010-02-09T18:48:44Z <p>I have a user table with columns named *first_name* and *last_name*.</p> <pre><code>SELECT * FROM users WHERE first_name LIKE '%keywords%' OR last_name LIKE '%keywords%' </code></pre> <p>Using the above, if I search for "John" or for "Doe" I'll get a hit. </p> <p>But if I search for "John Doe" I will get 0 results. How can I search MySQL in a way that will match "first_name last_name" rather than just one or the other?</p> http://stackoverflow.com/questions/411575/inserting-data-into-sql-table-with-primary-key-for-dupes-allow-insert-error-or 0 Inserting data into SQL Table with Primary Key. For dupes - allow insert error or Select first? Darian Miller 2009-01-04T19:58:56Z 2010-02-09T18:06:16Z <p>Given a table such as:</p> <pre><code>CREATE TABLE dbo.MyTestData (testdata varchar(50) NOT NULL) ALTER TABLE dbo.MyTestData WITH NOCHECK ADD CONSTRAINT [PK_MyTestData] PRIMARY KEY CLUSTERED (testdata) </code></pre> <p>And given that we want a unique list of 'testdata' when we are done gathering items to be added from a list of external data with known duplicates... When performing an insert stored procedure should the procedure be written to test for existence or should it just allow for error? What's the most common practice? I've always performed the test for existence but was debating this last night... </p> <pre><code>CREATE PROCEDURE dbo.dmsInsertTestData @ptestdata VarChar(50) AS SET NOCOUNT ON IF NOT EXISTS(SELECT testdata FROM dbo.MyTestData WHERE testdata=@ptestdata) BEGIN INSERT INTO dbo.MyTestData (testdata ) VALUES (@ptestdata) END RETURN 0 </code></pre> <p>or just capture/ignore PK violation errors when executing this one?</p> <pre><code>CREATE PROCEDURE dbo.dmsInsertTestData @ptestdata VarChar(50) AS SET NOCOUNT ON INSERT INTO dbo.MyTestData (testdata ) VALUES (@ptestdata) RETURN 0 </code></pre> http://stackoverflow.com/questions/689963/does-anyone-use-right-outer-joins 13 Does anyone use Right Outer Joins? KM 2009-03-27T14:24:24Z 2010-02-09T17:49:57Z <p>I use INNER JOIN and LEFT OUTER JOINs all the time. However, I never seem to need RIGHT OUTER JOINs, ever. </p> <p>I've seen plenty of nasty auto-generated SQL that uses right joins, but to me, that code is impossible to get my head around. I always need to rewrite it using inner and left joins to make heads or tails of it. </p> <p>Does anyone actually write queries using Right joins?</p> http://stackoverflow.com/questions/2092184/how-to-make-a-user-function-deterministic 0 How to make a user function deterministic George Polevoy 2010-01-19T08:45:13Z 2010-02-09T17:35:25Z <p>I'm trying to achieve optimization based on deterministic behavior of a user defined function in SQL Server 2008.</p> <p>In my test code, i'm expecting no extra function calls dbo.expensive, since it's deterministic and called with same argument value.</p> <p>My concept does not work, please explain why. What could be done to achieve the expected optimization?</p> <pre><code>use tempdb; go IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[expensive]') AND type in (N'FN', N'IF', N'TF', N'FS', N'FT')) DROP FUNCTION [dbo].[expensive] go -- used to model expensive user defined function. -- expecting to take about 1 second to execute create function dbo.expensive(@i int) returns int with schemabinding as begin declare @N bigint declare @ret bigint set @N = 16; -- will generate a set of 2^N declare @tab table(num int); with multiplicity as ( select 1 as num union all select m.num + 1 as num from multiplicity m where m.num &lt; @N union all select m.num + 1 as num from multiplicity m where m.num &lt; @N ) select @ret = count(num) + @i from multiplicity; return @ret; end go declare @tab table(x int); with manyItems as ( select 1 as iterator union all select iterator + 1 from manyItems where iterator &lt; 5 ) insert into @tab select 1 from manyItems; select CURRENT_TIMESTAMP; -- expected to take about 1 second select dbo.expensive(1) select CURRENT_TIMESTAMP; -- i want to make this one execute in 1 second too select x, dbo.expensive(x) as y from @tab; select CURRENT_TIMESTAMP; SELECT OBJECTPROPERTY(OBJECT_ID('dbo.expensive'), 'IsDeterministic'); </code></pre> http://stackoverflow.com/questions/2113941/xml-declaration-with-for-xml-path-in-sql-server-2005 1 XML declaration with "FOR XML PATH" in SQL Server 2005 Fred Clown 2010-01-21T23:57:54Z 2010-02-09T17:12:02Z <p>Below is a simplified version of a query that I have already created. The query works fine, but I cannot figure out how to get the XML declaration at the top of the generated XML. I've tried multiple things and searched far and wide on the Google, but alas I cannot seem to find out how to do this ... or even if it is possible.</p> <pre><code>select 'Dimension' "@type", ( select ( select 'X102' "TransactionType", convert(varchar, getdate(), 104) "Transfer/TransferDate", convert(varchar, getdate(), 108) "Transfer/TransferTime" for xml path (''), type ) "TransactionInformation" for xml path (''), type ) for xml path ('DimensionImport'), type </code></pre> <p><strong>Gives me...</strong></p> <pre><code>&lt;DimensionImport type="Dimension"&gt; &lt;TransactionInformation&gt; &lt;TransactionType&gt;X102&lt;/TransactionType&gt; &lt;Transfer&gt; &lt;TransferDate&gt;21.01.2010&lt;/TransferDate&gt; &lt;TransferTime&gt;15:46:36&lt;/TransferTime&gt; &lt;/Transfer&gt; &lt;/TransactionInformation&gt; &lt;/DimensionImport&gt; </code></pre> <p><strong>I'm wanting...</strong></p> <pre><code>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt; &lt;DimensionImport type="Dimension"&gt; &lt;TransactionInformation&gt; &lt;TransactionType&gt;X102&lt;/TransactionType&gt; &lt;Transfer&gt; &lt;TransferDate&gt;21.01.2010&lt;/TransferDate&gt; &lt;TransferTime&gt;15:46:36&lt;/TransferTime&gt; &lt;/Transfer&gt; &lt;/TransactionInformation&gt; &lt;/DimensionImport&gt; </code></pre> <p>Thank you in advance for any help you might be able to lend.</p> http://stackoverflow.com/questions/2230295/whats-the-best-way-to-dedupe-a-table 1 What's the best way to dedupe a table? froadie 2010-02-09T15:46:16Z 2010-02-09T16:55:11Z <p>I've seen a couple of solutions for this, but I'm wondering what the best and most efficient way is to de-dupe a table. You can use code (SQL, etc.) to illustrate your point, but I'm just looking for basic algorithms. I assumed there would already be a question about this on SO, but I wasn't able to find one, so if it already exists just give me a heads up.</p> <p>(Just to clarify - I'm referring to getting rid of duplicates in a table that has an incremental automatic PK and has some rows that are duplicates in everything but the PK field.)</p> http://stackoverflow.com/questions/2230629/mysql-many-to-many-query-problem 10 MySQL Many-To-Many Query Problem Martin 2010-02-09T16:24:04Z 2010-02-09T16:49:30Z <p>Hello!</p> <p>Here's my problem. I have a many-to-many table called 'user_has_personalities'. In my application, users can have many personalities, and a personality can belong to many users.</p> <p>The table has two integer columns, user_id and personality_id.</p> <p>What I need to do is get all users that have at least all of the personalities (a set of personality_ids of variable size) which I supply to the query.</p> <p>For an example, I'd like to get all users that have personalities with ids 4, 5, 7, but can also have some other personalities. But I need the query to work for a variable number of wanted personality ids, like 4, 5, 7, 9, 10 for an example.</p> <p>Any ideas?</p>