S
SUS2.04ever_ISU4now
I have 3 different queries with identical SELECT and FROM
statements. Only one of the three works.
The one that works is:
SELECT SUM(
.[column of numbers]) AS [the total]
FROM
WHERE
.[STR_name]=[@name];
The ones that don't work are:
SELECT SUM(
.[column of numbers]) AS [the total]
FROM
;
and
SELECT SUM(
.[column of numbers]) AS [the total]
FROM
WHERE
.[INT_IDnum]=[@IDnum];
statements. Only one of the three works.
The one that works is:
SELECT SUM(
FROM
WHERE
The ones that don't work are:
SELECT SUM(
FROM
and
SELECT SUM(
FROM
WHERE