all groups > sql server (alternate) > september 2006 > threads for september 29 - 30, 2006
Filter by week: 1 2 3 4 5
drop down list
Posted by brino at 9/30/2006 5:30:05 PM
hi all !
i'm kind of new to MYSQL so am still learning basics.
my question is how do you create a drop down list in a field in an SQL
database ?
thanks
brino
... more >>
A script to delete views
Posted by namewitheldbyrequest NO[at]SPAM gmail.com at 9/30/2006 1:18:43 PM
Hi,
I need a script that I can run from ASP .Net that will delete all
views that start with "Search". My site creates them on the fly and
they tend to accumulate as more users visit the site. Is there a good
SQL help web site that I can refer to that will be me started?
Thanks,
Bill
Ci... more >>
how to query for text containing parens?
Posted by Terry Olsen at 9/29/2006 8:13:57 PM
I have an SQL database with rows that have parens in the data.
If I run a select statement such as:
SELECT SongName
FROM Songs
WHERE SongName = 'John Jacob (Jingleheimer Schmidt)'
It returns zero rows. This also:
SELECT SongName
FROM Songs
WHERE SongName LIKE '%John Jacob (Jingleheim... more >>
Replace Multiple LIKEs
Posted by laurenquantrell at 9/29/2006 6:53:22 PM
I have a query below that performs horribly:
@KeywordOne char(6),
@KeywordTwo char(6),
@KeywordThree char(6),
@KeywordFour char(6),
@KeywordFive char(6)
SELECT
c.Something
FROM
dbo.tblStuff c
WHERE
c.SomeColumnName = 0
AND (c.Keyword LIKE '%' + @KeywordOne + '%' OR @KeywordOne is N... more >>
ALL and empty set
Posted by Dimitri Furman at 9/29/2006 3:24:09 AM
SQL Server 2000 SP4. Hoping to find a logical explanation for a certain
behavior.
Consider this script:
USE pubs
GO
IF 1 = ALL (SELECT contract FROM dbo.authors WHERE state = 'CA')
PRINT 'TRUE'
ELSE
PRINT 'FALSE'
This, as expected, prints FALSE, since not all authors in CA are... more >>
|