Jump to content

Hansiebebe

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Hansiebebe

  1. Hi, I am using this script, and the filter works fine. But i also would like to highlight the text , is this possible in one function ? <script> $(document).ready(function(){ $("#sInput").on("keyup", function() { var value = $(this).val().toLowerCase(); $("#grepobody tr").filter(function() { $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1) }); }); }); </script>
  2. SELECT COUNT(*) AS [COUNT], [TIME] FROM TABLE1 INNER JOIN TABLE2 ON TABLE1.NUMBER=TABLE2.NUMBER GROUP BY [TIME]
  3. Hansiebebe

    Help in SQL query

    SELECT MIN([DATE]) AS DATE,[NAME] FROM EMPLOYEES GROUP BY [NAME] This is what you're looking for ?
×
×
  • Create New...