Tagged Questions
-1
votes
2answers
30 views
Using wildcard in table data
Using MYSQL I have a table where the data has wildcards. Example...
|ID | Model |
|1 | dv209% |
I'm tryinh to write a sql query that will find row 1 when model='dv209AWW' or ...
1
vote
1answer
44 views
How can I represent a key value structure in Apache Solr efficiently
I have a structure of names and dates, that are stored in a log table. They represent user actions and when they did that.
Name Date
John A. 2013-04-01
Leev B. 2013-04-02
Anse E. ...
0
votes
2answers
95 views
Wild Card % Giving an Error in a SQL Query
This Oracle SQL query written in c# is giving me the following error : invalid character
qur = " select * from emp where name LIKE '%" + TextBox1.Text + "%'";
How can I solve this?
1
vote
2answers
38 views
Between… And… To work without values
I've tried to do this in a million different ways. At first I couldn't get it to work at all, but now I've managed to get it to work if I put in values.
What I need to happen is for my query to ...
0
votes
0answers
51 views
MYSQL Wildcard doesn't seem to use second word in Column
I have a problem matching some of my database values from an autocomplete.
Below is the code I use PHP side to match the input to the database value
$query = $db->query("SELECT categoryName FROM ...
0
votes
1answer
42 views
php building a mySQL query with a wildcard
Cant seem to figure out whats wrong, the query should be correct, and it works in phpMyAdmin but when I introduce a wildcard into the php string "%", every query fails.
This works:
$query = ...
0
votes
1answer
56 views
How to count instances of a SET of characters in SQL Column
I need to count instances of a set of characters (aeıioöuü) in each row.
For example:
"linebreak" should return 4.
"indent" should return 2
"quote" should return 3
I can count one single character ...
0
votes
2answers
76 views
My sql:how to use Wildcard in Subquery?
example:
SELECT country
FROM data
WHERE city LIKE
(SELECT LEFT ('jakartada',7));
it's working nicely but if i give delimiter with value:4 ,i must give wildcard
like this ---> "%string%" ,where ...
0
votes
1answer
181 views
How to use Wildcards on node attributes in cypher queries in neo4j
I'm trying to create a search from query parameters in Neo4j, but seem to have trouble identifying the wildcard. "*" isn't working for wildcards on node attributes.
The code I have is below:
price ...
1
vote
4answers
282 views
PHP mysql select query where (wildcard)
I'm trying to use the following MySQL query, but there is obviously something wrong. I'm trying to make page.php or page.php?q= return the following query:
if (!isset($_GET['q'])) { $where = "WHERE ...
0
votes
3answers
295 views
Mysql select all that match a number in string
Assume my table column contains the following 2 string rows:
1, 5, 2, 31, 12, 1212, 111
21, 25, 32, 43, 112, 212, 311
I need a query to select a row that contains number 1 and ...
0
votes
1answer
462 views
ElasticSearch: how to mix terms query with wildcard
Say, I have the following query: 'document spreadsheet app*'. I want to construct the query dictionary which is equivalent to this type of query '_search?q=_all:document+spreadsheet+app*'. Say, ...
0
votes
0answers
154 views
Querying for words ending with, with the ReversedWildcardFilterFactory and KeywordTokenizerFactory
I have the "text_general_rev" filed type declared in my Solr schema(.xml) like so:
<fieldType
name="text_general_rev"
class="solr.TextField"
positionIncrementGap="100">
...
0
votes
0answers
171 views
elasticsearch Query - Wildcard or Stemming within a Span (i.e. Proximity Query)
I would like to construct an elasticsearch query (or filter) that detects whether two words with wildcards are within a certain distance of each other. Is this possible with elasticsearch?
For ...
0
votes
1answer
72 views
Using wildcards in column value in LIKE condition
I have a situation where I need to find an entity matching a given filename. The filename is in this form:
filename1 = "ABCD_126518.pdf";
filename2 = "XYZ_32162.pdf";
In the Oracle DB, I have ...
1
vote
1answer
125 views
Parameterizing an SQL query which uses the NOT LIKE, “ ^ ” wildcard?
How can I parameterize the following query? (By the way I'm using a full text indexed table, hence the CONTAINS())
SELECT * FROM Table WHERE CONTAINS(Column, 'cat OR dog')
and ((column NOT LIKE '%[^ ...
0
votes
0answers
85 views
Error no 1064 when searching for last name ending with i [closed]
When Trying to do a wildcard search for the last name ending with the letter i, I keep getting the error no 1064. Here is my query:
select fname , lname
from empinfo
where fname like '%i'
...
-3
votes
1answer
115 views
MySQL Like query with parameter [closed]
When I connect to an access database I can use the LIKE query to search a string field to find what I need (LIKE '%' & ? & '%') that would return MAKE MARK TOMA if I put "MA" in the search ...
1
vote
3answers
658 views
Solr: Using a wildcard on a string with whitespace
I have basically the same problem as discussed here: Solr wildcard query with whitespace, but this question was not answered.
I'm using a wildcard in a filter query on a field called "brand."
I'm ...
1
vote
2answers
489 views
MySQL Query from HTML form - can an input use wildcards?
I've had a look, and while I've seen lots of explanations for using wildcards in the original PHP, I've not found anything to help me when the user input wants to use wildcards. I am very new to PHP ...
0
votes
1answer
78 views
mysql search for segment of table name
I'm trying to select tables in a mysql database which have the same ending, e.g. staff_name, manager_name, customer_name (example).
I was thinking of something along the lines of the following ...
-1
votes
1answer
231 views
VB LINQ query Where clause * not working?
Here is a function I've setup with my query trying to retrieve specific information that a user may or may not enter into a couple text boxes. The user can put in a...
company name
clients first ...
0
votes
1answer
170 views
xQuery variable holding wildcard * (any)
I would like to parametrize a XPATH filter for a function, but would like to have the chance of indicating I want all the results. Clear example
declare function search-by-author($author as ...
0
votes
3answers
226 views
Mysql select query grouping by wildcards
Having trouble grouping active forum sum results by wildcards.
Ultimately, I want all the results that have similar names grouped and summed in distinct rows.
table: forums
columns: game, posts
...
3
votes
1answer
282 views
Wildcard Match Against Query causes score to = 0 ( php / sql )
I am using a full text query with MySql version 5.0.45 and I am trying to optimize it for my needs. The score system was working fine, however because I have added a stemmer before the input now, I ...
2
votes
6answers
1k views
SQL Wildcard instead of key in SELECT statement
Can I, in a neat way do:
SELECT *
FROM tablename
WHERE * LIKE '%something%';
Without having to do:
SELECT *
FROM tablename
WHERE ColA LIKE '%something%'
OR ColB LIKE '%something%' ...;
...
1
vote
2answers
2k views
How to ignore characters on a MYSQL SELECT LIKE %…%
I have a table with a phone column, where data may have spaces, dots,dashes or + signs between the numbers.
I need to do a search with LIKE wildcards that ignore all those characters, for example:
a ...
0
votes
1answer
334 views
Wildcard not working? - JPQL in JPA
I've got a class MovieElement, a field url which is the id, and an other field name.
Just for testing the values of name and url are the same.
An object is persisted with name & url = ...
1
vote
2answers
4k views
using wildcards in LDAP search filters/queries
I have very limited knowledge in AD and LDAP queries so I have a simple question on how to use wildcards.
Supposed there is object with a displayName of "ITSM - Problem Management"
My current ...
30
votes
1answer
1k views
Why does “_” (underscore) match “-” (hyphen)?
I have to look for a PDF manual using this query:
root@localhost:test> select * from a where name like '%taz_manual%.pdf%';
+--------------------+------------------+-------------+
| name ...
0
votes
3answers
197 views
MySQL: SELECT value WHERE subquery returns a wildcarded value
Confusing title...my apologies.
What I've got is a table with two related rows. I need to get the value of a column in one row based on the value of a column in another row.
Given the following ...
0
votes
3answers
869 views
Simplifying mysql filter query
I'm building a platform for a casting manager to catalog Actors and be able to browse them. My table 'actor' is set up with first name, last name, email, phone, address etc.
I have a browse.php page ...
0
votes
1answer
311 views
% not working as wildcard for ActiveRecord default_scope query?
I am using ActiveRecord in my Rails project and one of my classes looks like this:
class ServerModel < ActiveRecord::Base
set_table_name "S985_947_MODELS_VW"
set_primary_key "model_barcode"
...
1
vote
2answers
356 views
MySQL Wildcard on Field Value?
I'm trying to build a simple system for translating some values before they are outputted in a file for users. Let's say I have the text: 'Method (aaaabbbccc - random text)', I'm trying to let the ...
1
vote
2answers
382 views
MYSQL / SQL 'Exclude' or 'Except'
I want to query everything, Like:
SELECT * FROM
but I want to exclude two columns because their not necessary, but there's too many columns I need to just type it all one by one. Is there an ...
4
votes
1answer
4k views
MongoDB wildcard in the key of a query
Is it possible to wildcard the key in a query? For instance, given the following record, I'd like to do a .find({'a.*': 4})
This was discussed here https://jira.mongodb.org/browse/SERVER-267 but it ...
0
votes
1answer
728 views
How can I use a wildcard as an option with a query in a combo box in an Access form?
I'm making a form in Access to search a database. I want to be able to use a combo box to let the user know the values that exist in the database. Specifically, something like this.
This works ...
0
votes
1answer
415 views
MySQL - Adding a wildcard for 'any number of spaces' inside CONCAT?
Why isn't this working?
SELECT up.first_name, up.last_name
FROM user_profiles up
WHERE u.activated = 1
AND up.first_name LIKE '%" . $search_term . "%'
OR up.last_name LIKE '%" . ...
2
votes
4answers
514 views
mysql detail query string, like wildcard
Not sure how to title my question... lol.
Below is what i am needing.
Values in my database look like the following: test_example-1, test_example-2, test_example-TD-1
The values can vary in ...
1
vote
6answers
1k views
SQL Wildcard Question
Sorry I am new to working with databases - I am trying to perform a query
that will get all of the characters that are similar to a string in SQL.
For example,
If I am looking for all users that ...
5
votes
4answers
210 views
Match '%' sign when searching in MySQL database
I would like to match this 'wildcard %' in MySQL.
I tried using escape \% and it is not working.
6
votes
2answers
3k views
mysql query against wildcard
I have a mysql query in php, using match / against to filter results. Im trying to get a wildcard after $string so the next character can be anything. Help?
"SELECT * FROM $table WHERE MATCH ...
5
votes
4answers
3k views
MySQL LIKE statement
I have a SQL query SELECT * FROM table WHERE column LIKE '%pdd%'.
The problem is I need to get all results excluding those which start with "pdd", I mean find everything where "pdd" is not at the ...
1
vote
4answers
3k views
how to search all / wildcard in lucern solr
I'm using RoR + acts_as_solr to query a Solr database.
I'm used to using "*" to select all, thanks to MySQL, but that command fires an exception in Solr. Are they other wildcards I can use? ...
0
votes
1answer
1k views
Lucene: How to do wildcard search inside a Term?
I've the following lucene index:
Document A
item = level:(1)
item = level:(2)
item = level:(3)
Document B
item = level:(1)
item = level:(4)
Suppose I want to search for all documents which contain ...
1
vote
3answers
3k views
Mysql query with wildcard on number strings
I am trying to query a mysql table which contains strings of numbers
(i.e. '1,2,3,4,5').
How do I search to see if it has '1' but not '11' bearing in mind if it is '9,10' '9%' doesnt work??
Fixed!
...
