new_query.hlp
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end 
  2. "Creating a new query" {bold} "
  3. Select the "Queries" tab from the main window and press
  4. the "New" button.
  5. You will need to enter the query name and the SQL command for the query. If
  6. you desire, you could use the " {} "visual query designer" {link visual_designer} "
  7. You can design dynamic queries that can include a parameter that will be
  8. provided later at query execution time by using the [parameter "message"] function
  9. as in the following examples :" {} "
  10. select * from people where age <= [parameter "Maximum age?"]
  11. select * from invoices where received_date = '[parameter "Invoice date?"]' " {code} "
  12. Before query execution a popup dialog will be displayed in order to get that
  13. parameter and to substitute it in the query command.
  14. Checking the "save this query as a view" checkbox will create a new view from
  15. the current query.
  16. "