Viewing 15 posts - 286 through 300 (of 319 total)
Thanks for the info..
Ok I created a table called User_Zips.
The DB has a table called Zip
I want to know which ones are on User_zips that are NOT on Zip?
Thx
May 29, 2012 at 11:39 am
Evil,
This works great and I even understand it!! lol
Thanks
Joe
March 9, 2012 at 7:17 am
Sorry Lynn,
I'm new at this...
Wow not only doi need a SQL class..
I need a Forum Class!!! lol
March 8, 2012 at 6:06 pm
Sorry Im fairly new and as u can tell didnt write what I showed..
Im trying to incorporate the second snippet into the first..
so if the person has an alias of...
March 8, 2012 at 4:42 pm
sorry....
So I have the following to add client name
with tage_name = 'CUST_CLIENTNAME'
INSERT INTO @TEMPTABLE(TAG_NAME,TAG_DATA)
SELECT TAG_NAME = 'CUST_CLIENTNAME', TAG_DATA = (SELECT C.FNAME + CASE WHEN C.MNAME IS NULL THEN ''...
March 8, 2012 at 4:25 pm
thanks Derek,
Im going to experiment
in the meatime
January 13, 2012 at 11:50 am
Hi,
Ok so I did this:
DECLARE @TEMPTABLE TABLE (
[ID] INT IDENTITY(1,1),
TAG_NAME varchar(255),
TAG_DATA image)
INSERT INTO @TEMPTABLE (TAG_NAME,tag_data)
select TAG_NAME = 'CUST_Photo', TAG_data =
(sELECT BLOB.BLOBASIMAGE
FROM Client
LEFT OUTER JOIN...
January 13, 2012 at 11:05 am
-- Declare @TEMPTABLE to hold values to be returned to HTML Form
DECLARE @TEMPTABLE TABLE (
[ID] INT IDENTITY(1,1),
TAG_NAME varchar(255),tag_image image,
TAG_DATA varchar(8000))
I added the tag_image
January 13, 2012 at 10:52 am
I should explain better sorry..
OK blobimage is an image field on a table
the SP is used to put data on HTML forms.
Here is a better snippet...
first this gets denist
INSERT INTO...
January 13, 2012 at 9:58 am
thanks..
I got a new one Im tottaly confused about stay tuned!!! lol
January 13, 2012 at 9:32 am
thats a good explaination..
Im putting it on my Fridge!!
January 11, 2012 at 12:40 pm
thanks that works great...
hate to be a pain I really am new, can u explain why that is, just so I know?
Thanks
January 11, 2012 at 12:14 pm
Viewing 15 posts - 286 through 300 (of 319 total)