douqiao5552 2012-02-20 07:15
浏览 42
已采纳

合并/删除具有相同子键的数组

I'm writing a database class for my site based on a fluent interface. First, I collect all the meaningful terms then put them into the "stack", which is basically an array. Then, I sort them in order that they would appear in an actual SQL query.

const stmt_select = 1;
const stmt_insert = 2;
const stmt_delete = 3;

const sql_select = 10;
const sql_from = 11;
const sql_into = 12;
const sql_where = 13;
const sql_join = 14;
const sql_group = 15;
const sql_order = 16;
const sql_limit = 17;

For example, the query below (although in a total rubbish order, and purposely trying to throw the class off):

Query::Select('name', 'age', 'height')
    ->Order('a')
    ->From('table')
    ->From('asd')
    ->Group('a')
    ->Execute();

.. produces:

Array
(
    [0] => Array
        (
            [0] => 10
            [1] => Array
                (
                    [0] => name
                    [1] => age
                    [2] => height
                )

        )

    [1] => Array
        (
            [0] => 11
            [1] => asd
        )

    [2] => Array
        (
            [0] => 11
            [1] => table
        )

    [3] => Array
        (
            [0] => 15
            [1] => a
        )

    [4] => Array
        (
            [0] => 15
            [1] => a
        )

)

The problem I have is that some array members I want to merge together (for example multiple ->Selects()/->Where() clauses) and some array members I want to delete entirely if there are multiple instances because it isn't possible for there to be more than one (for example ->Limit(), ->Order()), however I'm not entirely sure what the easiest way to do this is.

I was thinking something along the lines of a function I could call for each subkey;

DeleteDuplicates(sql_order);
Merge(sql_select);

Not sure how to write these without a massive performance hit per query.

  • 写回答

1条回答 默认 最新

  • doujian7132 2012-02-28 14:19
    关注

    Your class should handle duplicates as early as possible. E.g., each call to select() should not add another item to the main array, but all calls to select() should be collected in the same stack item.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 写论文,需要数据支撑
  • ¥15 identifier of an instance of 类 was altered from xx to xx错误
  • ¥100 反编译微信小游戏求指导
  • ¥15 docker模式webrtc-streamer 无法播放公网rtsp
  • ¥15 学不会递归,理解不了汉诺塔参数变化
  • ¥15 基于图神经网络的COVID-19药物筛选研究
  • ¥30 软件自定义无线电该怎样使用
  • ¥15 R语言mediation包做中介分析,直接效应和间接效应都很小,为什么?
  • ¥15 Jenkins+k8s部署slave节点offline
  • ¥15 如何实现从tello无人机上获取实时传输的视频流,然后将获取的视频通过yolov5进行检测