Viewing 15 posts - 46 through 60 (of 60 total)
Works great!
Thanks.
For others, I had to remove Sorting in the Category Groups.
November 7, 2013 at 10:44 am
The results for the months look fine.
The query returns
28November2012-11
40December2012-12
84January2013-01
64February2013-02
73March2013-03
119April2013-04
99May2013-05
70June2013-06
95July2013-07
113August2013-08
100September2013-09
187October2013-10
65November2013-11
NULLNULLNULL
November 7, 2013 at 8:16 am
I would like to know if the number of cars rented each month is increasing or decreasing
October 31, 2013 at 10:00 am
Here is an example
SELECT Model, RentalDate
FROM CARS
October 31, 2013 at 9:59 am
Here is what I did:
Example:
SELECT Manufacturer, Model
FROM CARS
WHERE Manufacturer = @Manf AND Model = '2 door'
Here is what I wanted a prompt for Model = '2 door' or Model <>...
September 5, 2013 at 10:25 am
No I didn't.
So far I wrapped my query in an expression and used a paramater within the expression. Works, but is slow
September 4, 2013 at 11:37 am
Though this is late, maybe it will help someone else.
You need to have setupadmin rights first, then run
GRANT ALTER ANY LINKED SERVER TO loginname
Now you will be able create...
July 3, 2013 at 6:17 am
I was hoping to use it in WHERE statement and this is just an example.
DECLARE @MYTEST AS VARCHAR(3)
SET @MYTEST = '<>'
SELECT CARS.Year
FROM CARS
WHERE CARS.Year @MYTEST '2011'
May 28, 2013 at 9:06 am
I guess I have phrased my question wrong.
What I was wondering is if it is possible to use a CASE statement to return BUICK, CHEV, and then All Models (including...
May 16, 2013 at 5:43 am
I even tried NVARCHAR
I get +ù+Å-¦+ó-+-¬+ô+«+å-¦+Æ+¦+è+ñ+ê
March 15, 2013 at 11:12 am
It is a CODEPAGE issue.
Now it inserts like "×ù⻪ÓîÆ´ÒôÊäÈÃ"
March 15, 2013 at 10:48 am
I hope this helps. The list to exclude is much longer than this.
SELECT MODEL
FROM CARS
WHERE MODEL NOT LIKE '%S2%', MODEL NOT LIKE '%R5%', MODEL NOT LIKE '%G8%',
MODEL NOT LIKE...
March 13, 2013 at 8:05 am
Viewing 15 posts - 46 through 60 (of 60 total)