Questions tagged as 'busca'

2
answers

How do I search by date?

I want to create a "date" search system. It may not be the best question in the world. But I think it's valid and interesting, with the potential to generate good content for the site. Example var buscar = function() { if (data == "0...
asked by 02.03.2017 / 16:57
2
answers

LIKE does not work together with BETWEEN

Something wrong with this query? All data is displayed without any filtering. But when I shoot the LIKEs it works or if I take the BETWEEN and leave the LIKEs it works. One only works without the other. Why? $produto =...
asked by 02.08.2016 / 23:11
1
answer

Your own blog search box does not work!

The search box does not work, I type the title of the text, the keywords, and all the words used in the text, and it simply appears that it has no results ... I've tested several other search boxes and nothing appears ... is it a problem in t...
asked by 18.04.2016 / 09:57
1
answer

How to obtain via IN the records found and not found

I have a simple command SELECT MATRICULA FROM ALUNOS WHERE ID_ALUNO IN (1,2,3,4,5,6) I would like to know how to get a result like this in SQL: ID | STUDENT 1 | LUIZ 2 | MARIA 3 | 4 | JOHN 5 | CARLOS 6 | That is, bri...
asked by 07.11.2014 / 13:43
1
answer

VBA Excel - Index Match with two conditions

I have a spreadsheet with multiple tabs. On the first tab I have the following table: Intab2,typetheclientandtype,andIwanttoreturntheID.ForthisIamusingthefollowingcodeinVBA:tipo=ActiveCell.Offset(0,-1).Valuecliente=Range("D5").Value ActiveCell....
asked by 18.07.2018 / 20:50
1
answer

Searching for parameter by editText

I'm having trouble fetching some data from a specific parameter in my android app, in webservice I already search and using GET already with the data I want it brings me the data, but I need it when I insert a text inside my edittext and hit the...
asked by 28.08.2017 / 16:13
1
answer

Help with placeholder that does not change color

People, I really need your help. I'm developing a website. I'm studying more accurately html5 and css3, and I'm getting a problem I can not solve ... Here is the format of the site in CodePen: link And if you want to download on your...
asked by 07.06.2017 / 08:05
1
answer

How to do a Google search with C #?

I need to fetch any term on Google and get a list of the results of that search. I'm trying to do this using the Google Custom Search API but I'm not getting satisfactory results. For example, when I search for the term "bidding" with my...
asked by 20.10.2016 / 19:56
1
answer

search function in a list angularjs

Hi, I have a function that searches a list for the occurrence of any string typed in the field that is passed as its parameter, it works fine for fetching these strings: $scope.$watch('q', function(newValue, oldValue) { if (oldValue != n...
asked by 23.11.2016 / 17:07
3
answers

Searching in an array in javascript

How to do a search within an array in javascript? The solution I use is a gambiarra. x = ['a','b','c','d']; if ( x.indexOf('a') != -1) { console.log('Verdadeiro'); } else { console.log('Falso'); }     
asked by 04.09.2016 / 05:26