...I'm writing an app in VB 6 connecting to a main frame DB2 data base and wish to order the results of a select statement by two fields, SCHLYEAR and TERM, corresponding to the school year and the term, (ie: Fall, Spring, or Summer).
What keeps me from simply using:
"SELECT FIELD1, FIELD2...
I am working with some .dbf files and my supervisor wants to know what version they are. Presumably they're dBase IV, but is there some sort of utility I can run which will open the files and determine what version of dBase they represent?
Thanks ahead for help!
To get the sum of a given column for a group of rows sharing the same column value, you do the following:
SELECT ccustno,
sum(nbalance) as totalbalance
FROM arinvc
GROUP BY ccustno
My question: How do you concatenate the string values of a given column for a group of rows? I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.