home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / datatl25.zip / DCTDSGN.Z / EWSQTDCN.QRY < prev    next >
Text File  |  1997-09-11  |  594b  |  26 lines

  1. #NAME#
  2. DA_TableDefinitionColumnName
  3. #DESCRIPTION#
  4. The ColumnName glossary query returns the names of Shareable Table Definitions which contain a column which matches the column name specified in the WHERE clause.
  5.  
  6. View type:  DAQTableDefinition
  7.  
  8. Modifications:
  9. Change the search criteria of the columnName attribute in the SQL WHERE clause
  10. using the = (equals), LIKE or IN elements
  11. #MODIFIED#
  12.  
  13. #VERSION#
  14.  
  15. #SQL STATEMENT#
  16. SELECT
  17.   t.tableDefinition,
  18.   t.columnName
  19. FROM
  20.   DAQTableDefinition t
  21. WHERE
  22.   t.columnName like '%'
  23. ORDER BY
  24.   t.tableDefinition,
  25.   t.columnName;
  26.