1
vote
0answers
48 views

Oracle SQL: Find {tags} in a sql string

I have SQL strings that my users write. They look like: SELECT Name, Age from Users WHERE Name LIKE '%a%' AND {UsersWhere} On the oracle server side when such an SQL is to be executed I want to ...
1
vote
1answer
26 views

Implementing a tag search with operands

I've been trying to implement a tag based search where users may type a string of tags using the operators & | and ! along with the ability to group search terms [i.e. (X&Y)|!Z]. My plan is to ...
0
votes
1answer
29 views

SQL - Rails Deep nested joins

First of all, I'm French, so sorry for my ugly english. I have following models : Shop has_and_belongs_to_many :products Product has_and_belongs_to_many :shops has_many :taggings has_many :tags, ...
0
votes
3answers
108 views

Get unique data from while sql query (multiple rows)

How do I get only unique result from this code? I just try query with SQL SELECT DISTINCT Statement and don't work it :( <?php error_reporting(E_ALL); ini_set('display_errors', '1'); ...
0
votes
2answers
38 views

Filtering on a joined table but also including data where the joined & filtered table is empty?

I have a table with User Information and a table with tag information. The tag table basically has a TagType, a UserID and a value for the tag. I joined the two tables based on the UserID. Now I want ...
0
votes
2answers
69 views

jquery tag it send content

I try this jquery tag http://aehlke.github.com/tag-it/ my code: <ul id="myTags"></ul> <textarea id="tagsend" style="display:none" rows="30" cols="30" name="tags"></textarea> ...
2
votes
3answers
215 views

Complex SELECT query in MySQL

I have the following tables: articles: id, title, content tags: id, tag, tagCategory tags2articles: id, idTag, idArticle categories: id, title, someOtherFields In a page I need to select all the ...
4
votes
2answers
201 views

SQL select a parent with children only in

if you have parent table create table parent ( pid int not null, name varchar(255) ) and a parent-child join table create table parent_child ( pid int not null, cid int not null, foreign ...
1
vote
0answers
78 views

replace function to stop decoding my html tags SQL

I have this code: DECLARE @body nvarchar(max) DECLARE @Query nvarchar(max) SET @Query = 'SELECT TOP 1 @body = sbdp.bdParameters from P'+@InternalEntityID+'..SchedulerBatchDetailParameters ...
0
votes
3answers
89 views

Performance in SQL sentence containing ORDER BY, LIMIT and COUNT

I've searched the way of improving this dangerous combination of functions in one SQL sentence... To put you in a context, i have a table with several information about articles (article_id, author, ...
0
votes
3answers
270 views

SQL Auto Increment ID

I have an SQL table with an auto-increment field. I know people have asked how to retrieve the ID of the 'last entry' after the insert has taken place, and I know how to do that. What I want to do is ...
3
votes
1answer
124 views

How to make a SQL to create a tag hierarchy based on items with the same tags?

In my system I have items with some tags on each. Now I want to show to the user a tree with the tags. The tree should have all the tags at the first level. Inside each first-level tag, should appear ...
0
votes
2answers
185 views

Tags class with comma separated values or separated tables?

I need to add a tags system to one of my websites. Right now i am coding something lke this: tags_table CREATE TABLE `tags_table` ( `id` int(15) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT ...
-2
votes
1answer
252 views

downloadable Database of all english words organised in categories [closed]

i need to download an existing database that contains all english words organised in categories.For example a table consisting of two fields one for the word and one for category,(example: ...
0
votes
1answer
90 views

Count every distinct tag

SELECT GROUP_CONCAT(DISTINCT tag) AS tags, filename, COUNT(tag) AS count FROM dados GROUP BY filename ORDER BY filename I have that query which show me all the tags for each movie, without the ...
0
votes
3answers
119 views

How to count occurrences in SQL without creating duplicates?

I have a table of many movies all with associated with different Director IDs, I need to count the number of movies made by the same Director ID and what that Director's Name is. My restrictions are ...
-3
votes
3answers
119 views

saving tags in database for a blog [closed]

I am creating a blog and i want to save the tags in my database. $tag1 = "PHP"; $tag2 = "Java"; . . . $tagn = "nn"; How should I save them in database. table : tags --------------- tag_id INT ...
0
votes
0answers
51 views

Searching for multiple terms in wordpress using SQL

I am trying to write an sql query that will return posts if they match the entire set of terms given: SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts LEFT JOIN wp_term_relationships AS trel ...
1
vote
1answer
92 views

Rails 3 - which sql query for related tags

I'm planning this feature now for a long time, and I just can't get started with it really, cause I don't know how to express it in code. Sometimes when I think I got it and know what I want, I ...
0
votes
1answer
124 views

Database Design - Questions, Answers, Tags

I have been reviewing the questions and answers here: How do you recommend implementing tags or tagging , and I understand the general design of the database, but how does it work? For instance, say I ...
0
votes
0answers
53 views

sql search by many conditions and order the results by the number of conditions met [closed]

A concrete example is that in my table I store tags in a column as a comma separated list. now the user's query will be as a comma seperated list of tags. I have to pull the results that have matching ...
0
votes
0answers
135 views

Generated HTML <br /> does not break

I have a small routine in SQL that I use as a scheduled job each day to email certain event log message to me. DECLARE @CurrentDate DATETIME, @Body VARCHAR(MAX), @TableHead ...
3
votes
2answers
288 views

SQL Joining 3 tables tag system codeigniter

First time poster here. I've been trying to come up with a tag system for my posts and I am having troubles getting the values I want. Rather, I can't seem to wrap my head around the logic of the ...
0
votes
1answer
74 views

Querying an entry with multiple categories?

I want to have a picture gallery and each gallery will be marked with a set of tags, I want users to be able to search for any number of these tags and I'd like if it were somewhat efficient. I don't ...
0
votes
3answers
116 views

Split tags and submit them to database

I am trying to create a javascript that split the tags (that the user gives, separated them with comma (,)) and pass them in my database in different rows but with the same id. i have this code: ...
0
votes
2answers
298 views

Get recent tags in wordpress

I want to get the recent tags from last 10 posts. Or get the recent 100 tags which was used in last posts. My code : <?php $tags .= "SELECT $wpdb->terms.term_id, $wpdb->terms.name, ...
0
votes
0answers
52 views

Filtering articles by both tags and content_type..?

I have Two tables (with fields) : articles : id,title,description content_tags : content_type_id, object_id ,tag_id content_type = https://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/ ...
0
votes
0answers
63 views

Tags form script not working properly

I have this add tags form. so when I add tags in the form and submit to the database it only submit one tag and the others not considered. I want to add each tag word into the database. here is the ...
2
votes
1answer
117 views

Filtering with AND and OR in Rails query

I have a difficult filtering problem in my Rails app. The user wants to filter items using tags. This is no problem, I just use a named scope. But the tags come in boxes that the user can choose from, ...
1
vote
2answers
227 views

How can I identify multiple word tags in a text field in SQL

I would like to have a SQL procedure which can be passed a text string and it will identify specific keywords (tags) in the text from a table of keywords. So far I have the following which works ...
0
votes
1answer
603 views

Wordpress Query POST TITLE and POST TAGS

Hello everyone in wordpress I was wondering how to QUERY the POST TITLE and the TAGS inside those POST. I have now queried the POST title POST date but Im missing the POST TAGS because it is located ...
0
votes
1answer
114 views

How to add links to related posts on the current post page PHP SQL

Im quite new to php and sql and Im trying to build a news site and im really stuck on trying to display a list of links to posts related to the current post being displayed,here is the code for the ...
0
votes
2answers
80 views

Modelling taggable items in database

I am storing tags to posts as a many-to-many relationship, like in this post. I now want to extend tags to be able to tag entities other than posts. I have all these in tables named posts, links, ...
1
vote
1answer
43 views

Select related Elements Attributes as String

I have an items Table and a Tags table. Now what I would like is to have one Select that gets Items under a certain condition and for each item selects the related tags and puts them in a string to ...
2
votes
4answers
126 views

What formula is used for building a list of related items in a tag-based system?

There are a lot of sites out there that use 'tags' to categorize items in their system. For example, YouTube uses keywords to categorize videos, Stack Overflow uses tags to categorize questions, etc. ...
0
votes
1answer
61 views

Detecting duplicate tags

I have a site which allows users to openly tag their items before submitting, similar to what delicious.com does: ...users can tag each of their bookmarks with freely chosen index terms... I ...
1
vote
3answers
318 views

“Friend” relationships across two mysql tables

I'm not quite sure how to construct an sql join inorder to find who a specific users "friends" are. For example I have two table User Table u_ID | u_Name ------------- 1 | bob 2 | jill 3 ...
0
votes
3answers
149 views

PHP/SQL script not working

I'm trying to generate the top 10 tags, I think it's pretty straightforward. //generate 10 top tags $tagSQL = mysql_fetch_array(mysql_query("SELECT * FROM tags")); $topArray = array(); ...
1
vote
1answer
414 views

Getting MySQL values into an array from two different tables?

My tagging system uses two tables, tags and coupon_tags. The way it works is that each coupon and each tag is assigned a numerical value. So a coupon may have the id 13 and a tag may have the id 5, ...
3
votes
4answers
816 views

Making a tag cloud with MySQL and PHP

I'm making a tag cloud. I have a table called tags with a row 'id' and row 'tag'. Each row 'tag' will be a tag just like on this site - imagine a tag called 'foo' for this example. Each row 'id' ...
1
vote
1answer
449 views

Tag schema to provide functionality similar to Stack Overflow's tag synonyms

I'm currently designing a database for a small bookmarking application (using MySQL) and I'd like to do something clever with the tag system. Although it's not an issue initially, I want to implement ...
0
votes
2answers
155 views

Inner joins in php

SELECT thread.id AS p_id, post.title, post.content, author.username, author.id AS a_id FROM thread INNER JOIN author ON author_id = author.id ...
0
votes
2answers
431 views

Deleting latest Wordpress tags from database

Hey guys, i need your help regarding Wordpress mySQL query. Situation I am using WordPress 3.0.1, installed one "Clever plugin" that automatically tagged my posts with tags. By mistake i marked that ...
1
vote
3answers
441 views

SQL - Returning Each Record Only Once

Here's my tables: tblBusiness BusinessID, BusinessName tblTags TagID, Tag tblBusinessTagLink BusinessID, TagID Any business can have multiple tags applied to it. Now lets say a user is filtering ...
1
vote
2answers
219 views

Making a tag cloud - No valid source of tags

So I have a few thousand articles indexed in my database, I want to make a tag cloud just based on how many articles have those tags, so if 1000 articles have the "global" tag it will make that bigger ...
1
vote
2answers
169 views

Need help with sql query to find things with most specified tags

Let's say I have the following tables: TAGS id: integer name: string POSTS id: integer body: text TAGGINGS id: integer tag_id: integer post_id: integer How would I go about writing a query that ...
1
vote
2answers
248 views

Need help with sql query to find things tagged with all specified tags

Let's say I have the following tables: TAGS id: integer name: string POSTS id: integer body: text TAGGINGS id: integer tag_id: integer post_id: integer How would I go about writing a query that ...
1
vote
2answers
994 views

SQL query for multiple tag inclusion

I´m net very good in explaining this. But i do my best: I've made a tagging tool for people. Some people contains more then 1 tag, and i need to get those but dont know how to write the SQL query for ...
0
votes
1answer
67 views

SQL posts top tags

I am using a MySQL database and looking to capture the top tags from my blog. The table looks like this: ++++++ post_tags ++++++ + id INT(10) + + post_id INT(10) + + tag_id INT(10) ...
3
votes
3answers
382 views

Select all projects that have matching tags

I'm trying to find the most efficient way of dealing with this but I must tell you front-head I've made a mess of it. Looked around SO and found nothing of relevance so here it goes. How to select ...

1 2