G
Guest
Hello,
In the FrontPage discussion group I asked a question about a query and I
received the following response:
select * from table where fieldname like '::letter::%'
if you're coding this you can do
<%
sql="select * from table where fieldname like '" &
request.querystring("letter") & "%'"
' execute your query
%>
I started to attempt to do this query and here is as far as I got
SELECT Labels.Label, Labels.Name, Labels.Picture
FROM Labels
WHERE ((Labels.Name) Like
Any sort of help is welcomed.
Thank you in advance
In the FrontPage discussion group I asked a question about a query and I
received the following response:
select * from table where fieldname like '::letter::%'
if you're coding this you can do
<%
sql="select * from table where fieldname like '" &
request.querystring("letter") & "%'"
' execute your query
%>
I started to attempt to do this query and here is as far as I got
SELECT Labels.Label, Labels.Name, Labels.Picture
FROM Labels
WHERE ((Labels.Name) Like
Any sort of help is welcomed.
Thank you in advance