Home Forums SQL Server 2008 Working with Oracle How to create a function that takes a table name and where clause as parameters RE: How to create a function that takes a table name and where clause as parameters

  • look at the error you are getting; it should be very obvious;

    if i used your function for a table named "Customers" and a WHERE statement that was "CustomerName LIKE 'c%'

    what would your statment look like?

    SELECT COUNT(*) FROMCustomersWHERECustomerName LIKE 'c%'

    does that help you identify the problem?

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!