我有这些表:
* gasm_clients
id_client INT NOT NULL,
name_client VARCHAR(50) NOT NULL,
cellphone_client VARCHAR(15) NOT NULL
* gasm_invoices
id_invoice INT NOT NULL,
(id_client || client_name) --> I'm not sure of these two columns which use
invoice_total DECIMAL(10,2) NOT NULL
....
必须澄清客户必须先以另一种形式注册,但要快速开具发票,我只需要客户的姓名而不在客户表中注册。
我想允许用户搜索所有注册的客户或单写客户名称。
EX:
1. Choose Client
2. Write name
但我不知道在 SQL 上执行此操作的最佳方法是什么。