Can anyone advise please how to setup SQL Server 08.. what are the required components to install to use queries, create tables, etc... similar user environment to have an access database - i've added a link to view
Function pPriceMaxBidNotMine()
'get the highest bid for this item not belonging to me
sql = "SELECT TOP 1 bidhistory.bidAmount AS price FROM bidhistory WHERE (((bidhistory.idProduct)="&Session("pIdProduct")&") AND ((bidhistory.idCustomerBid) <> "&session("idcustomer")&")) ORDER BY...
I have a bit of a problem, I seem to be re-inventing the wheel around my site the problem lies with two talbe
products and bidhistory
products as a price(which is current high bid and 0 if no bids) and startprice, the starting price of the item
Bidhistory is empty if there are no bids so I...
I'm going mad looking at this can anyone tidy it up please?
<%if Request.QueryString("frst") = "1" then%>
<%Session("highbidder") = false%>
<form method="post" action="pt_showcart.asp?processbid=1" name="recalculate"> <!-- first step is here confirm bid-->
<%elseif...
I get an error on these catchers but the query is valid?
mySQL="UPDATE products SET products.Price = "&Session("pPrice")&" WHERE (((products.idproduct)="&Session("pIdProduct")&"))"
conntemp.execute(mySQL)
if err.number <> 0 then
response.redirect "pt_supporterror.asp?error="&...
If i use this query
SELECT TOP 2 bidhistory.bidAmount AS price FROM bidhistory WHERE (((bidhistory.idProduct)=1560) AND ((bidhistory.idCustomerBid)<>15)) ORDER BY bidhistory.bidAmount DESC
how do I get both values? or specify a particular value... ie; I want the second one
I'm moving to SQL Server 08 soon so I'd like to drop this problem here...
Hello,
I have a problem with this query
SELECT Min(bidAmount) AS price FROM BidHistory WHERE (((BidHistory.bidAmount) In (SELECT Min(BidAmount) FROM BidHistory WHERE BidAmount<10009999 and idproduct = 1560)))
It will...
Hello,
I have a problem with this query
SELECT Min(bidAmount) AS price FROM BidHistory WHERE (((BidHistory.bidAmount) In (SELECT Min(BidAmount) FROM BidHistory WHERE BidAmount<10009999 and idproduct = 1560)))
It will always select min bid from the bidhistory table, the problem is, it will...
Could this code be better as a query rather than wrapping a execute in this loop?
first query is
SELECT products.Description, products.Price, products.ImageUrl, products.idproduct, products.endDate, suppliers.idsupplier, suppliers.supplierName FROM suppliers INNER JOIN products ON...
Hi
What is the best way to handle dates and times in access or sql? seperate columns
days hours minutes etc.
or one column date/time because I'm having all sorts of errors due to the way access stores them
Hi, I've place this question here because its relavant to this forum... sorry about the other post
I need the following query
I use this query to get most of the information, the price is updated in two tables, one bidhistory and the other the products, so I need somewhere in this select...
Hi, I've place this question here because its relavant to this forum.
I need the following query
I use this query to get most of the information, the price is updated in two tables, one bidhistory and the other the products, so I need somewhere in this select query to pull out min bid for...
Hi
Need a query to show lowest bid for that user,
ie:
user1 has bid 250
user2 has bid 320 as a proxy
so when user1 logs in he only sees next bid as 260 an then if he bids i can use a query to notify that the bid is not high enuf .. any help is welcome
i want to add the date and time to a database from a form so it needs to be a selectable time and date so there are no errors submitting, is there anything out their to use to pick date and time?
i want to add the date and time to a database from a form so it needs to be a selectable time and date, is there anything out their to use to pick date and time?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.