all groups > sql server data mining > september 2003 > threads for september 1 - 7, 2003
Filter by week: 1 2 3 4 5
Last update or get modify date of table
Posted by SQL at 9/7/2003 10:46:52 AM
How can I get modify-date of table
with SQL query
... more >>
"For All" type data mining
Posted by Derek at 9/4/2003 3:47:15 PM
Hi,
I am stuck on the question how to use Query to retrieve
the 'language' spoken by all the students from the
following table:
studentId language
--------- -------
10541000 English
10541000 French
10541012 German
10541012 French
10541012 English
10541023 Chines... more >>
Multiple Selects & Sums
Posted by Peter Newman at 9/4/2003 6:59:17 AM
I am trying to get the net monies recieved for any given
month. A typicl transacyion looks like this
ACNO TRNTYPE TRANDATE AMOUNT VATAMT MATCHDATE
------------------ ------- ---------------------------
217224 SIN 2003-06-30 -64.6500 -9.6300 2003-07-31
217224 MQR 2003-... more >>
Checking a field for case
Posted by cliff taylor at 9/3/2003 3:12:31 PM
is there an easier way to find if a field is lowercase
other than:
WHERE (CHARINDEX('a', [$WhereField]) <> 0
OR CHARINDEX('c', [$WhereField]) <> 0
OR CHARINDEX('d', [$WhereField]) <> 0
OR CHARINDEX('e', [$WhereField]) <> 0
OR CHARINDEX('f', [$WhereField]) <> 0
OR CHARIN... more >>
Table design Revisited
Posted by Bea at 9/2/2003 9:56:26 PM
Hello,
I use Access form1 to insert data into a table residing in SQL2k.
When I use form2 to update the already saved data and 'SAVE' is executed, a
window pops up stating that an other user has changed the data and suggests
to save the changes in the Notepad for later view. But, it doesn't save... more >>
2 records per person
Posted by Will Graves at 9/2/2003 3:06:05 PM
Hi,
Having a problem. I have a table with users and responses.
I need 2 distinct responses for every user in the table.
Doing the SELECT TOP 2(candidate_ID), * only pulls 2
records from the first user. Putting the top 2 in the
where clause doesn't work either.
Totally having a brain cr... more >>
Finding duplicate records
Posted by Ed at 9/2/2003 9:22:24 AM
I need some help with a T-SQL statement. Any help would
be greatly appreciated.
Database has one table with two fields: FileName &
FilePath. FileName and FilePath individually are not
unique, but together they must be unique:
FileName FilePath
1 "DailyReport" C:\...... more >>
Conditional Statements in Select
Posted by Mike Wasmer at 9/1/2003 8:40:41 AM
Is it possible to put a conditional statement in a select
that assigns a value if one is not derived?... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
links to a table
Posted by Sofia Pessoa at 9/1/2003 8:01:04 AM
Hi
Suppose i am using northwind database and that I want to
use authors table in Pubs Database. How can I do that?
Can I make a table link like I can do at Microsoft Access??
How is the best strategy?
Thanks for your help... more >>
|