0
votes
3answers
33 views
SQL select statement string concatenation
Can something like this be done with a select statement:
SELECT col1, concat(col2 + ' ') FROM ....
GROUP BY col1
I know i can use count(col2) or sum(col2) for integers but is there a …
1
vote
4answers
26 views
Why is using a parameterized query to insert data into a table faster than appending the values to the query string?
Why is using a parameterized query to insert data into a table:
string queryString = "insert into product(id, name) values (@id, @name)";
faster than appending the values to the query string:
…
0
votes
2answers
14 views
how to hide querystring in asp.net content page?
Hi,
i have master-content page scenario.I have a link button on content page. that redirects to other page. but with redirection it carrying the parameters. I want to hide this querystring parameters …
0
votes
2answers
14 views
Transpose a row into columns with MySQL without using UNIONS?
I have a table that is similar to the following below:
id | cat | one_above | top_level |
0 'printers' 'hardware' 'computers'
I want to be …
0
votes
1answer
26 views
Sql Query Solution
I have a query as follows.
select strftime('%Y-%m',A.traDate) as Month,sum(A.TraAmt) as Total,C.GroupType from
TransactionTbl A left join TransactionCategory B on A.CategoryID = B.CategoryID left …
6
votes
10answers
143 views
Do link tables need a meaningless primary key field?
I am working on a couple of link tables and I got to thinking (Danger Will Robinson, Danger) what are the possible structures of a link table and what are their pro's and con's.
I came up with a few …
0
votes
2answers
27 views
SQL - Find missing data / negative search
Hi - following on from my other post... I have a table that uses two fields to make a primary key...
TravelEventID RemarkNo Keyword Text
0001 1 TVL LOWCOST …
0
votes
3answers
67 views
SQL query to replace all occurrences of space in a table with underscore
How can I write a SQL query to replace all occurrences of space in a table with underscore without writing individual statements for each column?
1
vote
5answers
39 views
how to convert result of an select sql query into a new table in ms access
how to convert result of an select sql query into a new table in msaccess ?
0
votes
3answers
88 views
VBA string length problem
Hi,
I have an Access application where everytime a user enters the application, it makes a temp table for that user called 'their windows login name'_Temp. In one of my reports I need to query using …
0
votes
3answers
46 views
sql query to show all records except for certain records
i have an ms-access table
TableA
MSN PR
11 -
13 A
12 Dead
14 B
15 C
How can i write an sql query to remove records in "-" and "Dead" occurances in PR collumn. so that query result …
1
vote
3answers
154 views
How I can optimize this slow query?
I want to know how I can optimize it, preferably without changes in tables structure.
SELECT p.author_id member_id,
m.members_display_name member_name,
COUNT(p.pid) posts
FROM …
0
votes
1answer
11 views
MySQL 3 table overlapping query
Hello, another 3 table query here. I have a table reservation, customer_service, and billing.
I am trying to select roomtype from reservation and some other fields from billing "ON" r.ID = b.rID and …
1
vote
3answers
49 views
Decent Visual SQL query Builder
I am a code developer, not a DBA, and I tend to get lost with loooong SQL queries, when I use many joins (10 joins is pretty common for me).
I would like to find a Visual SQL Query Builder (free if …
0
votes
1answer
12 views
How do I query exchange for all events on a calendar?
I'm currently writing a room booking diary template for an ASP .Net CMS and I need to be able to retrieve the information from an exchange calendar.
Can anyone point me in the direction of some good …
