1,select cust_name, cust_city, cust_phone from 客户表 where custmoer_id=“511603323”
2,select cust_name,account_no,oper_type,oper_date,amount from 表!!
你没有说有哪些表,select的格式就是 select 表的属性 from 表 where 条件
多表查询的话你要注意表与表的连接条件
select a.cust_name as 姓名, b.account_no as 账号,b.oper_type as 操作类型, b.oper_date as操作日期,b. amount as 金额 from custmoer_id a,操作表 b where a.custmoer_id=b.custmoer_id