S
shapper
Hello,
I am trying to figure out what are the differences between a query in
SQL and Access.
I am having problems with my Access query.
Which one should I use?
SELECT content_localized.content_html
FROM content INNER JOIN content_localized ON content.content_id =
content_localized.content_id
WHERE (((content.content_page)=? AND ((content.content_name)=? AND
((content_localized.content_culture)=? ));
or
SELECT content_localized.content_html
FROM content INNER JOIN content_localized ON content.content_id =
content_localized.content_id
WHERE (((content.content_page)=[@Page]) AND
((content.content_name)=[@Name]) AND
((content_localized.content_culture)=[@Culture]));
and why?
Thanks,
Miguel
I am trying to figure out what are the differences between a query in
SQL and Access.
I am having problems with my Access query.
Which one should I use?
SELECT content_localized.content_html
FROM content INNER JOIN content_localized ON content.content_id =
content_localized.content_id
WHERE (((content.content_page)=? AND ((content.content_name)=? AND
((content_localized.content_culture)=? ));
or
SELECT content_localized.content_html
FROM content INNER JOIN content_localized ON content.content_id =
content_localized.content_id
WHERE (((content.content_page)=[@Page]) AND
((content.content_name)=[@Name]) AND
((content_localized.content_culture)=[@Culture]));
and why?
Thanks,
Miguel