文件名称:数据库方面
文件大小:790KB
文件格式:PPT
更新时间:2015-08-01 10:46:02
考试
关于数据库方面的资料,ppt之类的 type customer = record customer_id : string; customer_name : string; customer_street : string; customer_city : integer; end; select customer.customer_name from customer where customer.customer_id = ‘192-83-7465’ 例如: 找到客户编号为192-83-7465的客户所拥有的所有帐户的余额 select account.balance from depositor, account where depositor.customer_id = ‘192-83-7465’ and depositor.account_number = account.account_number 应用程序通常通过以下两种方式之一访问数据库