I have a Word document form that I will be using on-line. An employee is supposed to fill out the form and hit the submit button. Once that is done, that form should be sent to me as an e-mail. Any one know what I could do to do this? Any help on this would be appreciated. Thanks!
Does anyone know how to use the '%' in Crystal Reports?
In SQL you can use this to search for a particular description through a field. An example would be;
SELECT ITEM
FROM INVENTORY
WHERE ITEM LIKE '%BEARING%';
This query would than find any items with the word 'BEARING' in them and...
I am trying to find duplicate items in a table. The problem is that the information I need is in more than 1 table. Example of code that works, but does not give me everything I want:
select number
from table
group by number
having count(*) > 1;
Besides the numbers that are duplicated...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.