Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
3k views

SQL - Select distinct but return all columns?

SELECT DISTINCT field1, field2, field3, ...... FROM table I am trying to accomplish the following sql statement but I want it to return all columns is this possible? Something like: SELECT ...
3
votes
4answers
106 views

How can I make an SQL statement that finds unassociated records?

I have two tables as follows: tblCountry (countryID, countryCode) tblProjectCountry(ProjectID, countryID) The tblCountry table is a list of all countries with their codes and the tblProjectCountry ...
2
votes
1answer
117 views

Using Select Statement in MySQL Function Call

In the following MySQL stored function call, instead of having to manually type in the lat long coordinates, I'd like to select a polygon from another table to be tested. I'm having problems getting ...
2
votes
1answer
240 views

Hyphen in a sql select statement

This is my very simple select statement: select * from ProductDimensions where Item='100-1000' When entered into SSMS it queries fine and returns the results. When run through my program in VS it ...
1
vote
3answers
173 views

In clause in Select statement of SQL Server 2008

I have an SQL Server Query: select *from table1 where column in ('list of values') When I execute this, I get all the details, however, when I do this: select *from table1 where column in ('list ...
1
vote
3answers
243 views

SQL Get specific columns from one table and all rows from a joined table in one query

This may have been asked before and I just can't find it. I have a one to many relationship in the database on a few tables. table1 table2 table3 table2 - table3 is the 1-many relationship ...
1
vote
4answers
252 views

In mySQL, Is it possible to SELECT from two tables and merge the columns?

If I have two tables in mysql that have similar columns... TABLEA id name somefield1 TABLEB id name somefield1 somefield2 How do I structure a SELECT statement so that I can SELECT ...
1
vote
1answer
666 views

Select ancestors and immediate children of a node in a nested set tree using MYSQL

Hoping some of you mysql experts can help me out. I have searchtag data that is stored in a nested set. TABLE searchTags searchTagID searchTag lft rgt (I am using nested sets because there are ...
1
vote
3answers
555 views

SQLAlchemy sqlalchemy.sql.expression.select vs. sqlalchemy.sql.expression.Select

So I'm brand new to SQLAlchemy, and I'm trying to use the SQL Expression API to create a SELECT statement that specifies the exact columns to return. I found both a class and a function defined in the ...
1
vote
4answers
112 views

Is there a reason to prefer a switch over an if statement with only one condition?

I found the following code in my team's project: Public Shared Function isRemoteDisconnectMessage(ByRef m As Message) isRemoteDisconnectMessage = False Select Case (m.Msg) Case ...
1
vote
2answers
163 views

How do you implement a select statement in VBScript?

Can anyone please tell me how to implement select statements in VBScript, similar to switch statement in C? It would be great if you provided some examples as I'm pretty new to VBScript. Thanks.
0
votes
1answer
42 views

Mutliple MySQL Nested Selects

Hi there I wonder if someone could help, I am having a complete mental block. I have this select statment that works perfectly, however I now want to check the results (FirstName and Surname) against ...
0
votes
1answer
55 views

Database - Writing a complex query?

I have a table that contains my node data in a tree view. Each node has it's own child. Is it possible to write a single statement to get each node along with it's children (each level sorted by a ...
0
votes
1answer
128 views

How to combine two columns together to create a new column in a select statement?

Hope you can help. I have a Date column and a time column and i want to be able to combine these together within a select statement so there is just one column for [Date and Time]. Everything ive ...
0
votes
2answers
40 views

Select statement help needed

I am writing a query in a mysql db website and need a little help on the select statement syntax. I need to retrieve info from a database containing user input from a web-form at my site. There are ...
0
votes
2answers
82 views

Query behaviour differs between SELECT and FUNCTION call

Background Creating a wrapper function for a SQL statement. Problem A function returns 1 row, whereas the query upon which the function is based returns 100+ rows. The parameter values are ...
0
votes
1answer
759 views

I want to be able to perform an SQL SELECT (sqlite) on a table and ORDER BY each rows distance from an arbitrary point

I have a sqlite database with a table full of geographic locations, each stored as a latitude and longitude value in degrees. I wanted to be able to perform a SQL SELECT on this table and ORDER BY ...
0
votes
1answer
468 views

SQL Server 2000, Get COUNT(DISTINCT ID) with a condition that I can't write to my WHERE?

First of all, I don't want to use a "join" because that will make my query longer and difficult to read. So what I need to do must be withing the same SELECT statement. My columns in myTable are A, B ...
0
votes
1answer
54 views

How do I make the following interaction with mySQL more efficient?

I've got an array that contains combinations of unique MySql IDs: For example: [ [1,10,11], [2,10], [3,10,12], [3,12,13,20], [4,12] ] In total there are a couple hundred different ...
0
votes
5answers
11k views

SQL: Use multiple values in single SELECT statement

I'm using a SELECT statement in T-SQL on a table similar to this: SELECT DISTINCT name, location_id, application_id FROM apps WHERE ((application_id is null) or (application_id = '4')) AND ...
0
votes
1answer
271 views

How to use the LIKE statement correctly in a MySql SELECT statement?

Why isn't this working? DELIMITER ;// CREATE PROCEDURE `blah` ( SearchText varchar(4000) ) BEGIN SELECT * FROM table_name WHERE table_name.StringField LIKE '%' + SearchText + '%'; -- This ...
0
votes
4answers
654 views

How do I provide a string of Ids in a Select statement's IN clause even though the column is an integer

I'm paging data using an ObjectDataSource and I have the following method: public int GetNumberOfArticles(string employeeIds) { System.Data.DataTable dataTable; ...
-1
votes
1answer
22 views

Custom wordpress SQL statement for a website

I'm trying to link specific columns from a few standard tables in a wordpress database. I specifically want to see a view/table that includes: post title post content guid meta value = image url ...
-1
votes
1answer
62 views

Does `SELECT * FROM my_table WHERE textfield >= “whatever”;` return more than `count(“whatever”)` rows because it's an array?

I'm just wondering why CREATE TABLE employeeinfo( position CHAR(50), salary INT NOT NULL, branch CHAR(50) ) ENGINE=InnoDB; SELECT * FROM EMPLOYEEINFO WHERE position >= 'Regional Manager'; ...