i want to use getString() to optimize code. i have "WHERE" and "ORDER BY" in my SQL statment but don't want those fields to display on my table.
strSQL = SELECT FIELD1, FIELD2 WHERE FIELD3='something' ORDER BY FIELD4"
i want to display only FIELD1 and FIELD2 in a table using getString() on my ASP page. can this be done?
any help is appreciated, thanks.
strSQL = SELECT FIELD1, FIELD2 WHERE FIELD3='something' ORDER BY FIELD4"
i want to display only FIELD1 and FIELD2 in a table using getString() on my ASP page. can this be done?
any help is appreciated, thanks.