Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
rank
- Page 1
Best Digital Marketing Company in India
Digital Media
Digital Marketing
35 Minutes Ago
by celtustech
… strategies. Our Key Services Include: SEO (Search Engine Optimization) to
rank
higher on Google Social Media Marketing & Management (Facebook, Instagram…
Re: Help needed Related Website
Digital Media
Digital Marketing
4 Days Ago
by ashishkumar56
> I need to
rank
my Website in USA for different services. I write article …
Re: SEO vs AEO – Which is more important for the future of search?
Digital Media
Digital Marketing
Search Engine Strategies
3 Days Ago
by Dani
…'re in a Catch-22 because we still want to
rank
by search engines, especially sites whose business models rely on…
Re: Why SEO is Important for the Website?
Digital Media
Digital Marketing
Search Engine Strategies
3 Weeks Ago
by heerii
… things make it easier for search engines to understand and
rank
your site better.
Re: Do backlinks to disallowed URLs help the domain overall?
Digital Media
Digital Marketing
Search Engine Strategies
2 Weeks Ago
by ashleydent4u
You’re right that Google may still consider backlinks to URLs disallowed in robots.txt, but it doesn’t mean that the link juice (or Pagerank equivalent) flows as effectively as it would if the page were crawlable. As for the domain root, the backlinks to those disallowed pages don’t directly impact the overall domain's authority in a significant …
Re: Do backlinks to disallowed URLs help the domain overall?
Digital Media
Digital Marketing
Search Engine Strategies
1 Week Ago
by MasoodDidThat
The sole purpose of disavowing a link is to stop Google from indexing the backlink so it does not affect your ranking. You can upload the file of your disallowed backlinks to GSC (https://search.google.com/search-console/disavow-links). This practice helps protect your site from potential penalties associated with low-quality or spammy links. So…
Re: Best way to find a segment of code that matches a given input segment?
Programming
Software Development
2 Months Ago
by Dani
…? I asked ChatGPT: What is pseudocode for an algorithm to
rank
1000 articles in terms of similarity to a particular article… = sort(similarity_scores, key=lambda x: x[1], reverse=True) 6.
Rank
the articles based on their similarity to the target article…
Re: How Can I Increase More Traffic of My Website?
Digital Media
Digital Marketing
2 Months Ago
by adamsmith22
i think with the help of SEO you can
rank
your website and you can have more traffic from that and please if someone can tell more in detail please tell me
Re: How Does Google's BERT Algorithm Affect Modern SEO Practices?
Digital Media
Digital Marketing
Search Engine Strategies
1 Month Ago
by scope_2
…, informative, user-centric content that naturally answers search queries to
rank
higher. SEO success now depends on the quality of the…
Re: How Does Google's BERT Algorithm Affect Modern SEO Practices?
Digital Media
Digital Marketing
Search Engine Strategies
4 Weeks Ago
by jonathannweyer
BERT shifted the focus, it's less about exact keywords now and more about matching search intent. Quality content that answers real questions clearly tends to
rank
better, so definitely prioritize that over keyword stuffing.
Re: rank system
Programming
Web Development
12 Years Ago
by diafol
…while($data = mysql_fetch_assoc($result)){ if($award != $data['points'])$
rank
++; $updateList[] = "($user_id, $
rank
)"; $award = $data['points']; //check //echo …("INSERT INTO table (user_id,
rank
) VALUES $updateString ON DUPLICATE KEY UPDATE
rank
=VALUES(
rank
)"); ... I'm assuming …
rank system
Programming
Web Development
12 Years Ago
by johndohmen1963
… more rows in a table the last column is called
rank
one row is called points. I want automatic insert the…
rank
like when a person has 123 points is
rank
1 the second person with 120… the same point like 119 point even he must have
rank
3 i have a peace of code but it does…
Re: rank system
Programming
Web Development
12 Years Ago
by pritaeas
You need to remember the last
rank
assigned, and the number of points for the previous member. If the points are the same, assign the previous
rank
, otherwise assign the count. Try it first.
Re: rank system
Programming
Web Development
12 Years Ago
by johndohmen1963
…; } there is only one thng How can i start the
rank
with number 1 and not 0(zerro)
Re: rank system
Programming
Web Development
12 Years Ago
by johndohmen1963
oke i got it for the numbers SET rang='".($i+1)."' WHERE id =".$id+1.""; now when the someone has the same points i need the same
rank
Re: rank system
Programming
Web Development
12 Years Ago
by johndohmen1963
yes there is only one instance of each user in a table in this year and yes i need a stored
rank
.
Re: rank system
Programming
Web Development
12 Years Ago
by johndohmen1963
yes but intil now i can't get it work. The
rank
is always empty
Re: rank system
Programming
Web Development
12 Years Ago
by johndohmen1963
Can someone help me to create the code for the same
rank
where points are the same ?
Rank function
Programming
Databases
13 Years Ago
by moone009
… I would like it to look locationid
Rank
0A0F4E97-699B-E011-B139-00188B47C528 1 0A0F4E97-…?? :) [CODE]SELECT Street, StreetName, locationid, propertydatamap,
Rank
=
RANK
() OVER (PARTITION BY propertydatamap ORDER BY propertydatamap, streetname, pkRPLRoutingID…
Re: Rank function
Programming
Databases
13 Years Ago
by Brillig
It's a little difficult to tell without more details on your data model. But shouldn't your
rank
function be more like [CODE]
Rank
=
RANK
() OVER (PARTITION BY locationid ORDER BY locationid)[/CODE]
Re: Rank function
Programming
Databases
13 Years Ago
by BitBlt
You could import your data into a temp table, do a select distinct with the
rank
into a second temp table, then join the two temp tables on locationid to assign the
rank
. Ugly, but it should work.
Rank data
Programming
Software Development
13 Years Ago
by Muhammad Dasuki
Hi ... i have datagrid with sample : How to create
rank
1, 2, 3 , etc... with variable
rank
rank
score Name Job 1 251 Cames Student 2 249 David lawyer 3 135 Benny Office 4 125 Amy Student and how to sorting with variable name thank !
Rank based on amount desc and date asc
Programming
Databases
12 Years Ago
by pritesh2010
… DateTime), N'Accepted') I want result as below Assign Highest
Rank
of based on Max BidAmount. if Bid Amount gets tie… ever enter bid amount first he will get the high
Rank
..Mean based on Bidtime…
Re: Rank based on amount desc and date asc
Programming
Databases
12 Years Ago
by poojavb
…as Asc.... But according to the criteria 1. Assign Highest
Rank
of based on Max BidAmount. 2. If Bid Amount …ever enter bid amount first he will get the high
Rank
So just use the opposite of what darkagn as …given SELECT
RANK
() OVER (ORDER BY vcBidAmount DESC, vcBidTime) AS Ranking, * FROM …
Re: Rank based on amount desc and date asc
Programming
Databases
12 Years Ago
by darkagn
You can use the
RANK
function to do this. [Here](http://msdn.microsoft.com/en-… the order to get the way you want it: SELECT
RANK
() OVER (ORDER BY vcBidAmount, vcBidTime DESC) AS Ranking, * FROM BiddingTable…
rank a Site
Digital Media
Digital Marketing
11 Years Ago
by Lisabraker
I have a website and i want to
rank
it in google. But i need to
rank
in google.ch Please tell me how to start for my site.
Re: Rank-Grouping by 2 columns
Programming
Databases
11 Years Ago
by eralper
… Server has introduced new features called Windowing functions like Row_Number,
Rank
, NTile, etc Please refer to SQL tutorial titled [Exam Scores… Classes Using DENSE_RANK()](http://www.kodyaz.com/articles/tsql-dense-
rank
-function.aspx) just on this topic Please check the following…
rank of a matrix
Programming
Software Development
16 Years Ago
by sweetanimeshrcc
i want c code of :
rank
of a matrix
Rank mysql search results by coulmn weighting
Programming
Web Development
15 Years Ago
by tulipputih
Hello everybody, how do I
rank
mysql search results by column weighting? thanks for your input.
Re: rank of a matrix
Programming
Software Development
15 Years Ago
by rahul66
please send me source code of
rank
of matrix in c[CODE][/CODE]
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC