在我的 php 网站上,我将 3 种内容类型保存在具有不同列数的不同表中
例如:
Type 1 (X columns) (example: table_products)
Type 2 (Y columns) (example: table_customers)
Type 3 (Z columns) (example: table_posts)
我正在制作一个搜索系统,在同一个 Select 中搜索每种类型,最终显示所有结果。
例子:
I search: foo
System searchs on: Type 1, type 2 and type 3 "foo" and shows:
- Product foo1
- Product foo2
- Customer foo1
- Customer foo2
- Customer foo3
- Post foo1
(It's only an example)
现在我有三个不同的函数来对每种类型进行查询,但我不喜欢这样,因为我无法对其进行分页。
我需要进行一次搜索三个表的查询。
谢谢