UDB, 8.2, Solaris.
From class, I know that you sometimes need to put single quotes around select statements on the command line. I am trying to do a simple select with a where clause (that has to have single quotes) and it's not working.
I've tried:
db2 select a,b,c from syscat.dbauth where grantee = 'public'
db2 'select a,b,c from syscat.dbauth where grantee = 'public''
db2 "select a,b,c from syscat.dbauth where grantee = 'public'"
no luck.
Julie