Viewing 15 posts - 2,881 through 2,895 (of 15,381 total)
Please don't cross post. It just fragments replies and makes it harder for you and the people trying to help.
http://www.sqlservercentral.com/Forums/Topic1683510-169-1.aspx
May 7, 2015 at 8:44 am
J Livingston SQL (5/7/2015)
http://www.sqlservercentral.com/Forums/Topic1318719-1291-1.aspx
heh seems that we have covered this before. Well done.
May 7, 2015 at 8:42 am
nick.latocha (5/7/2015)
The problem is the number of values can and will change - so my schema will also need to change each time a new value is...
May 7, 2015 at 8:31 am
yusufm 48726 (5/7/2015)
Cheers guys, I would ask in mysql forum. or is there a sql function where I could get current date orders?
Well are you using sql server or mysql?...
May 7, 2015 at 8:28 am
yusufm 48726 (5/7/2015)
I am kind of struggling to get the result for current date orders but I can get the query working for due date.
"
SalesOrder.DateEntered,
SalesLine.OrderQuantity, (SalesLine.OrderQuantity*SalesLine.SellingPrice / ...
May 7, 2015 at 8:12 am
spaghettidba (5/7/2015)
May 7, 2015 at 8:11 am
nick.latocha (5/7/2015)
May 7, 2015 at 8:10 am
gwyn.jones (5/7/2015)
That field is actually a free entry field so a user can enter what they want.
The majority...
May 7, 2015 at 8:06 am
Maybe you are not able to cast as datetime because you have the dateformat different on your system then the format of the text version of your dates. This will...
May 7, 2015 at 7:41 am
gwyn.jones (5/7/2015)
I am adapting old code, hence the numerous substrings - I don't know...
May 7, 2015 at 7:36 am
gwyn.jones (5/7/2015)
I can convert the first part into a start_date using:
substring(m.customer_order_no,1,2)+ '/' +substring(m.customer_order_no,4,2)+ '/' +substring(m.customer_order_no,7,2) as...
May 7, 2015 at 7:35 am
preethy06 (5/7/2015)
How can i learn SQL Server 2014
There are so many possibilities for an answer to this. Do you have any experience in sql server? Do you have any experience...
May 7, 2015 at 7:28 am
paul 17028 (5/7/2015)
Thank youit's all making sense now. fields are only supposed to have one entry.
Thank you all again
Paul M
Yes. You should read up on database normalization. Having properly normalized...
May 7, 2015 at 7:21 am
minimay (5/6/2015)
Im not trying to solve anything Im trying to figure out how to do this for future reference
Dealing with dates in sql is a topic that many people don't...
May 6, 2015 at 9:23 am
In Access you would create a new table similar to something like this.
create table ImageTags
(
ImageNumber number
, TagDescription varchar
)
Then for your example of "woman , beach , sea , seaside ,...
May 6, 2015 at 9:18 am
Viewing 15 posts - 2,881 through 2,895 (of 15,381 total)