Viewing 15 posts - 151 through 165 (of 181 total)
...if there is no data after the 'F' on each row (we can only hope it is that easy).
March 4, 2008 at 2:02 pm
I agree with you there, G. I noticed the last 3 words were the 'from', and it wasn't the same table as the one in the table DDL. ...
March 4, 2008 at 1:29 pm
That view DDL does not reference the table DDL that was provided. Is this important?
March 4, 2008 at 12:37 pm
Something else to think about...
What if your name is like: 'Smith, JeffF' ?
Anyway to get rid of the 'F' as a delimiter, perhaps use some other character?
March 4, 2008 at 8:51 am
Mark Harley (3/3/2008)
OrderNumber
Detail1
...
March 3, 2008 at 12:11 pm
Does your report display the data in columns, several records at a time, or is each report page a single record?
March 3, 2008 at 11:43 am
JSAD (3/3/2008)
I wanto insert values into TF.transID where tf.ID = pr.ID.The transID comes from the pr table[thus tf.transID = pr.attemptID]
update tf
set tf.transID = pr.attemptID
from prattempts pr, [servername].[databasename].[dbo].[tablename] tf
where pr.ID =...
March 3, 2008 at 11:35 am
Lionel2007 (3/3/2008)
Hi,I need to modify data in a table using Query Analyzer. What is the syntax?
Update [tablename]
set [columnnameA] = yourdata,
[columnnameB] = moredata
where [primarykeycolumn] =...
March 3, 2008 at 11:25 am
JSAD (3/3/2008)
update tf
set ID = pr.attemptID
from prattempts pr, [i]servername[/i].[databasename].[dbo].[tablename] tf
where pr.ID = tf.ID
This is the Logic
There are three tables(abbreviating it so tht i do not give out specific info)
1]...
March 3, 2008 at 11:16 am
You show a column 'custid' in your post. Do you have another table that contains 'Customer' data and 'custid'?
March 3, 2008 at 9:32 am
Steve Jones - Editor (3/2/2008)
Ex 3.
select
a.name
, b.address
, b.city
, b.state
, a.phone
, c.country
from customers a
inner join address b
...
March 3, 2008 at 6:54 am
It will also depend on how you want to use the records that contains nulls.
If TravelCost = null is the same as having TravelCost = 0, then you can use...
February 29, 2008 at 10:55 am
Scott B (2/26/2008)
...I'm able to enter data into the DB, and I've got my date field being auto-filled by an insert trigger
Scott,
This isn't what you were asking about, but...
February 29, 2008 at 8:25 am
Although this topic is almost a year old (at this writing), I'll throw in one of my pet peeves...
Don't abbreviate anything by omitting one or two letters.
Emplyee for Employee
Addrss for...
February 29, 2008 at 7:21 am
In Crystal, you have control of the display field format and can set the $ not to display. I personally don't like a column of 50 numbers each with...
February 29, 2008 at 6:27 am
Viewing 15 posts - 151 through 165 (of 181 total)