{"id":237334,"date":"2021-01-01T04:43:24","date_gmt":"2020-12-31T20:43:24","guid":{"rendered":"http:\/\/4563.org\/?p=237334"},"modified":"2021-01-01T20:48:01","modified_gmt":"2021-01-01T12:48:01","slug":"%e6%97%a5%e5%b8%b8%e6%b6%a8%e7%9f%a5%e8%af%86%e7%b3%bb%e5%88%97-%e6%83%8a%e5%a4%a9%e5%9c%b0%e6%b3%a3%e9%ac%bc%e7%a5%9e%e7%9a%84-sql%ef%bc%8c-300-%e8%a1%8c","status":"publish","type":"post","link":"http:\/\/4563.org\/?p=237334","title":{"rendered":"\u65e5\u5e38\u6da8\u77e5\u8bc6\u7cfb\u5217-\u60ca\u5929\u5730\u6ce3\u9b3c\u795e\u7684 sql\uff0c 300 \u884c~~"},"content":{"rendered":"<div>\n<div>\n<div>\n<h1>                  \u65e5\u5e38\u6da8\u77e5\u8bc6\u7cfb\u5217-\u60ca\u5929\u5730\u6ce3\u9b3c\u795e\u7684 sql\uff0c 300 \u884c~~               <\/h1>\n<p> <\/p>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : funbox <\/span>  <span><i><\/i> 6<\/span> <\/div>\n<div> <\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<div isfirst=\"1\"> <\/p>\n<p>\u6ca1\u6709\u522b\u7684\u610f\u601d\u5c31\u662f\u60f3\u8ba9\u5927\u5bb6\uff0c\u957f\u957f\u89c1\u8bc6~ \u80fd\u770b\u61c2\u7b97\u6211\u8f93<\/p>\n<pre><code>SELECT  *  FROM  (  SELECT   `inventory`.`id` AS `inventoryId`,   `inventory`.`location_id` AS `locationId`,   `inventory`.`storehouse_id` AS `storehouseId`,   `product`.`id` AS `productId`,   `product`.`name` AS `name`,   `product`.`number` AS `number`,   `brand`.`name` AS `brandName`,   `product`.`size` AS `size`,   `category`.`name` AS `categoryName`,   `product`.`unit` AS `unit`,   `storehouse`.`name` AS `storehouseName`,   `location`.`name` AS `locationName`,   IFNULL( inventory.quantity, 0 ) AS `remainQuantity`,   IFNULL( inventoryBath.avgPrice, 0 ) AS `avgPrice`,   IFNULL( inventoryBath.totalPrice, 0 ) AS `totalPrice`,   `inventoryWarning`.`lowerLimit` AS `lowerLimit`,   `inventoryWarning`.`upperLimit` AS `upperLimit`,(    IFNULL( repairOrderItem.repairRemainQuantity, 0 )+ IFNULL( purchaseReturnOrderItem.purchaseReturnRemainQuantity, 0 )+ IFNULL( otherOutOrderItem.otherInOutstockQuantity, 0 )) AS `waitOutQuantity`,(   IFNULL( purchaseOrderItem.purchaseRemainQuantity, 0 )+ IFNULL( otherInOrderItem.otherInOutstockQuantity, 0 )+ IFNULL( onlineInOrderItem.onlineRemainInstockQuantity, 0 )) AS `waitIntQuantity`,   `product`.`barcode` AS `barcode`,   `supplier`.`name` AS `supplierName`,   `product`.`valid_period` AS `validPeriod`,   `product`.`standard_id` AS `standardId`,   `product`.`from_id` AS `fromId`,   `product`.`source` AS `source`,   `oeTable`.`oeNumber` AS `oeNumber`,   `product`.`vehicle_note` AS `vehicleNote`,   `product`.`description` AS `note`,   `store`.`name` AS `storeName`,   `product`.`create_time` AS `createTime`,   `inventory`.`tenant_id`,   `product`.`sale_price1` AS `productSalePrice`,   `product`.`price_mode` AS `productPriceMode`,   `product`.`markup_type` AS `productMarkupType`,   IFNULL( lastPurchasePrice.lastPurchasePrice, 0 ) AS `lastPurchasePrice`,(   CASE          WHEN product.price_mode = 1 THEN     product.sale_price1      WHEN product.price_mode = 2      AND product.markup_type = 1      AND IFNULL( inventory.quantity, 0 )= 0 THEN      IFNULL( lastOutPrice.unitPrice, 0 )* product.sale_price1       WHEN product.price_mode = 2       AND product.markup_type = 1       AND IFNULL( inventory.quantity, 0 ) != 0 THEN       IFNULL( inventoryBath.avgPrice, 0 )* product.sale_price1        WHEN product.price_mode = 2        AND product.markup_type != 1 THEN        IFNULL( lastPurchasePrice.lastPurchasePrice, 0 )* product.sale_price1        END        ) AS salePrice       FROM       `inventory`       LEFT JOIN `product` ON `inventory`.`product_id` = `product`.`id`       LEFT JOIN `category` ON `product`.`category_id` = `category`.`id`       LEFT JOIN `brand` ON `product`.`brand_id` = `brand`.`id`       LEFT JOIN `storehouse` ON `inventory`.`storehouse_id` = `storehouse`.`id`       LEFT JOIN `location` ON `inventory`.`location_id` = `location`.`id`       LEFT JOIN `supplier` ON `product`.`supplier_id` = `supplier`.`id`       LEFT JOIN `store` ON `inventory`.`store_id` = `store`.`id`       LEFT JOIN (       SELECT        SUBSTRING_INDEX(         GROUP_CONCAT( unit_price ORDER BY outstock_time DESC ),         ',',         1         ) AS `unitPrice`,        `product_id` AS `productId`        FROM        `inventory_batch`        WHERE        ( `store_id` = '27358' )         AND ( `inventory_batch`.`tenant_id` = 1 )        GROUP BY        `product_id`        ) `lastOutPrice` ON `inventory`.`product_id` = lastOutPrice.productId       LEFT JOIN (       SELECT        group_concat( product_number.number SEPARATOR \";\" ) AS `oeNumber`,       `product_number`.`product_id` AS `productId`        FROM        `product_number`        WHERE        ( `product_number`.`type` = 1 )         AND ( `product_number`.`tenant_id` = 1 )        GROUP BY        `product_number`.`product_id`        ) `oeTable` ON `inventory`.`product_id` = oeTable.productId       LEFT JOIN (       SELECT        `storehouse_id` AS `storehouseId`,        SUM( quantity )- SUM( outstock_quantity ) AS `remainQuantity`,        SUM(         unit_price *(          quantity - outstock_quantity          )) AS `totalPrice`,        `product_id` AS `productId`,       IF        (         inventoryBathAll.currentQuantity = 0,         inventoryBathLast.unitPrice,        round( inventoryBathAll.avgPrice, 2 )) AS `avgPrice`        FROM        `inventory_batch`        LEFT JOIN (        SELECT         `product_id` AS `productId`,         SUM( quantity )- SUM( outstock_quantity ) AS `currentQuantity`,         CONVERT (          SUM(           unit_price *(            quantity - outstock_quantity            ))\/(          SUM( quantity )- SUM( outstock_quantity )),         DECIMAL ( 20, 2 )) AS `avgPrice`         FROM         `inventory_batch`         WHERE         ( `store_id` = '27358' )          AND ( `inventory_batch`.`tenant_id` = 1 )         GROUP BY         `product_id`         ) `inventoryBathAll` ON `inventory_batch`.`product_id` = inventoryBathAll.productId        LEFT JOIN (        SELECT         SUBSTRING_INDEX(          GROUP_CONCAT( unit_price ORDER BY batch_number DESC ),          \",\",          1          ) AS `unitPrice`,         `product_id` AS `productId`,         max( batch_number ) AS `batchNumber`         FROM         `inventory_batch`         WHERE         ( `store_id` = '27358' )          AND ( `inventory_batch`.`tenant_id` = 1 )         GROUP BY         `product_id`         ORDER BY         `batch_number` DESC         ) `inventoryBathLast` ON `inventory_batch`.`product_id` = inventoryBathLast.productId        WHERE        ( `store_id` = '27358' )         AND ( `inventory_batch`.`tenant_id` = 1 )        GROUP BY        `product_id`,        `storehouse_id`        ) `inventoryBath` ON ( `inventory`.`product_id` = inventoryBath.productId )        AND ( `inventory`.`storehouse_id` = inventoryBath.storehouseId )       LEFT JOIN (       SELECT        `product_id` AS `productId`,        `lower_limit` AS `lowerLimit`,        `upper_limit` AS `upperLimit`        FROM        `inventory_warning`        WHERE        ( `store_id` = '27358' )        AND ( `inventory_warning`.`tenant_id` = 1 )) `inventoryWarning` ON `inventory`.`product_id` = inventoryWarning.productId       LEFT JOIN (       SELECT        SUM( repair_order_product_item.quantity - repair_order_product_item.use_quantity ) AS `repairRemainQuantity`,        `repair_order_product_item`.`product_id` AS `productId`        FROM        `repair_order_product_item`        INNER JOIN (        SELECT         *         FROM         `repair_order`         WHERE         ( `status` != 21000 )          AND ( `repair_order`.`store_id` = '27358' )         AND ( `repair_order`.`tenant_id` = 1 )) `repairOrder` ON `repair_order_product_item`.`order_id` = repairOrder.id        INNER JOIN (        SELECT DISTINCT         `product_id`         FROM         `inventory`         WHERE         ( `store_id` = '27358' )          AND ( `inventory`.`tenant_id` = 1 )         GROUP BY         `product_id`         ) `inventoryQue` ON `repair_order_product_item`.`product_id` = inventoryQue.product_id        WHERE        `repair_order_product_item`.`tenant_id` = 1        GROUP BY        `repair_order_product_item`.`product_id`        ) `repairOrderItem` ON `inventory`.`product_id` = repairOrderItem.productId       LEFT JOIN (       SELECT        SUM( purchase_return_order_item.quantity - purchase_return_order_item.outstock_quantity ) AS `purchaseReturnRemainQuantity`,        `purchase_return_order_item`.`product_id` AS `productId`        FROM        `purchase_return_order_item`        INNER JOIN (        SELECT         *         FROM         `purchase_return_order`         WHERE         (         `purchase_return_order`.`status` IN ( 12000, 13000 ))          AND ( `purchase_return_order`.`store_id` = '27358' )         AND ( `purchase_return_order`.`tenant_id` = 1 )) `purchaseReturnOrder` ON `purchase_return_order_item`.`order_id` = purchaseReturnOrder.id        WHERE        `purchase_return_order_item`.`tenant_id` = 1        GROUP BY        `purchase_return_order_item`.`product_id`        ) `purchaseReturnOrderItem` ON `inventory`.`product_id` = purchaseReturnOrderItem.productId       LEFT JOIN (       SELECT        SUM( other_in_out_stock_order_item.quantity ) AS `otherInOutstockQuantity`,        `other_in_out_stock_order_item`.`product_id` AS `productId`        FROM        `other_in_out_stock_order_item`        INNER JOIN (        SELECT         *         FROM         `other_in_out_stock_order`         WHERE         ( `other_in_out_stock_order`.`type` = 1 )          AND ( `other_in_out_stock_order`.`status` = 1 )          AND ( `other_in_out_stock_order`.`store_id` = '27358' )         AND ( `other_in_out_stock_order`.`tenant_id` = 1 )) `otherInOutOrder` ON `other_in_out_stock_order_item`.`order_id` = otherInOutOrder.id        WHERE        `other_in_out_stock_order_item`.`tenant_id` = 1        GROUP BY        `other_in_out_stock_order_item`.`product_id`        ) `otherOutOrderItem` ON `inventory`.`product_id` = otherOutOrderItem.productId       LEFT JOIN (       SELECT        SUM( purchase_order_item.quantity - purchase_order_item.instock_quantity ) AS `purchaseRemainQuantity`,        `purchase_order_item`.`product_id` AS `productId`        FROM        `purchase_order_item`        INNER JOIN (        SELECT         *         FROM         `purchase_order`         WHERE         (         `purchase_order`.`status` IN ( 12000, 13000 ))          AND ( `purchase_order`.`store_id` = '27358' )         AND ( `purchase_order`.`tenant_id` = 1 )) `purchaseOrder` ON `purchase_order_item`.`order_id` = purchaseOrder.id        WHERE        `purchase_order_item`.`tenant_id` = 1        GROUP BY        `purchase_order_item`.`product_id`        ) `purchaseOrderItem` ON `inventory`.`product_id` = purchaseOrderItem.productId       LEFT JOIN (       SELECT        SUM( other_in_out_stock_order_item.quantity ) AS `otherInOutstockQuantity`,        `other_in_out_stock_order_item`.`product_id` AS `productId`        FROM        `other_in_out_stock_order_item`        INNER JOIN (        SELECT         *         FROM         `other_in_out_stock_order`         WHERE         ( `other_in_out_stock_order`.`type` = 2 )          AND ( `other_in_out_stock_order`.`status` = 1 )          AND ( `other_in_out_stock_order`.`store_id` = '27358' )         AND ( `other_in_out_stock_order`.`tenant_id` = 1 )) `otherInOutOrder` ON `other_in_out_stock_order_item`.`order_id` = otherInOutOrder.id        WHERE        `other_in_out_stock_order_item`.`tenant_id` = 1        GROUP BY        `other_in_out_stock_order_item`.`product_id`        ) `otherInOrderItem` ON `inventory`.`product_id` = otherInOrderItem.productId       LEFT JOIN (       SELECT        SUM( online_purchase_order_item.quantity - online_purchase_order_item.instock_quantity ) AS `onlineRemainInstockQuantity`,        `online_purchase_order_item`.`product_id` AS `productId`        FROM        `online_purchase_order_item`        INNER JOIN (        SELECT         *         FROM         `online_purchase_order`         WHERE         ( `online_purchase_order`.`status` = 1 )          AND ( `online_purchase_order`.`store_id` = '27358' )         AND ( `online_purchase_order`.`tenant_id` = 1 )) `onlineOrder` ON `online_purchase_order_item`.`order_id` = onlineOrder.id        WHERE        `online_purchase_order_item`.`tenant_id` = 1        GROUP BY        `online_purchase_order_item`.`product_id`        ) `onlineInOrderItem` ON `inventory`.`product_id` = onlineInOrderItem.productId       LEFT JOIN (       SELECT        `product_id` AS `productId`,        `last_price` AS `lastPurchasePrice`        FROM        `purchase_price`        WHERE        ( `store_id` = '27358' )        AND ( `purchase_price`.`tenant_id` = 1 )) `lastPurchasePrice` ON `inventory`.`product_id` = lastPurchasePrice.productId       WHERE       ( `product`.`status` != 90 )        AND ( `inventory`.`store_id` = '27358' )       AND ( `inventory`.`tenant_id` = 1 )) `table`      WHERE      `table`.`tenant_id` = 1      ORDER BY     `createTime` DESC   LIMIT 10 <\/code><\/pre>\n<\/p><\/div>\n<div> <b>\u5927\u4f6c\u6709\u8a71\u8aaa<\/b> (<span>100<\/span>)        <\/div>\n<div> <\/div>\n<\/p><\/div>\n<\/p><\/div>\n<ul>\n<li data-pid=\"4687416\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : ttys001 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             sql \u4e0d\u7528\u7ef4\u62a4\u5427\uff0c\u4e0d\u7528\u5427\uff0c\u4e0d\u7528\u5427\u2026\u2026                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687417\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u4e3b<\/span> <span>\u8cc7\u6df1\u5927\u4f6c : funbox <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @ttys001 \u6700\u8fd1\u4f18\u5316\u78b0\u5230\u7684\uff0c\u751f\u4ea7\u73af\u5883\uff01\uff01\uff01                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687418\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : hack2012 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u4e2a\u4f30\u8ba1\u662f dba \u5199\u7684\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687419\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : totoro52 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             &#8230;&#8230;..\u5199\u8fd9\u79cd SQL \u7684\u4e5f\u662f\u4eba\u624d \u597d\u5bb6\u4f19\u76f4\u63a5\u5728 sql \u91cc\u5199\u4e1a\u52a1\u903b\u8f91                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687420\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : ben1024 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             emm&#8230; \u80fd\u8bf4\u6b63\u5e38\u64cd\u4f5c\u5417\uff0c\u5728\u5904\u7406\u6570\u636e\u805a\u5408\u65f6\u6839\u672c\u4e0d\u77e5\u9053\u4f1a\u5199\u591a\u957f\u7684 SQL                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687421\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : melvin <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u771f\u7279\u4e48\u4eba\u624d \u51e0\u79d2\u8f93\u51fa\u7ed3\u679c                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687422\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : cslive <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u89c1\u591a\u4e86\uff0c\u90fd\u662f\u4ece\u6570\u4ed3\u62bd\u6570\u7684                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687423\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : kiracyan <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u867d\u7136\u662f\u5c4e\u5c71 \u4f46\u662f\u6574\u7406\u597d\u5e94\u8be5\u80fd\u770b\u61c2\u7684                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687424\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : learningman <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4e0d\u9519\u4e86\uff0c\u90fd\u662f\u82f1\u6587\uff0c\u7ed3\u5408\u4e1a\u52a1\u770b\u770b\u5c31\u61c2<br \/>\u5982\u679c\u628a\u4ee5\u4e0a\u90fd\u6362\u6210\u62fc\u97f3\u9996\u5b57\u6bcd\uff0c\u4f60\u76f4\u63a5\u8df3\u66f4\u5e72\u8106\u4e9b                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687425\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : lovecy <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5176\u5b9e\u7ed3\u6784\u8fd8\u633a\u7b80\u5355\u7684\uff0cLEFT JOIN \u4e00\u5806\u8868\uff0c\u7136\u540e\u4ece\u751f\u6210\u7684\u4e34\u65f6\u8868\u7528 WHERE \u62bd\u6570\uff0c\u770b\u662f\u80fd\u770b\u61c2\uff0c\u6539\u8d77\u6765\u5c31\u75db\u82e6\u4e86\uff0c\u6700\u597d\u7948\u7977\u4e0d\u8981\u51fa\u95ee\u9898\u3002\u3002\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687426\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : czzt1 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u624d\u51e0\u884c\uff0c\u51e0\u5343\u884c\u7684\u5b58\u50a8\u8fc7\u7a0b\u5199\u7684\u4e1a\u52a1\u903b\u8f91\u89c1\u8fc7\u4e48                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687427\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : acr0ss <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u7ed3\u6784\u6e05\u6670\u7684\uff0c\u4f46\u662f\u7406\u89e3\u903b\u8f91\u5c31\u96be\u4e86\u3002<br \/>\u597d\u5728\u6bcf\u4e2a join structure \u7684 table alias \u8d77\u540d\u633a\u7528\u5fc3\uff0c\u610f\u4e49\u5f88\u660e\u786e\uff1b\u5728\u6ca1\u6709\u6ce8\u91ca\u7684\u60c5\u51b5\u4e0b\uff0c\u80fd\u7ed9\u51fa\u4e0d\u5c11\u63d0\u793a\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687428\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : securityCoding <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @melvin \u5e94\u8be5\u662f\u5728\u6570\u4ed3\u8dd1\u7684                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687429\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : joesonw <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             BI \u91cc\u9762\u4e0d\u90fd\u8fd9\u4e48\u5199\u7684\u5417? \u8fd8\u662f\u8fd9\u4e2a\u662f\u4e1a\u52a1\u73af\u5883                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687430\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u4e3b<\/span> <span>\u8cc7\u6df1\u5927\u4f6c : funbox <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @cslive \u4e3b\u8981\u662f\u7528\u6237\u524d\u7aef\u70b9\u51fb\u5217\u8868\u7684 sql \u3002\u3002\u3002\u3002\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687431\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : tojonozomilk <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4ec0\u4e48\uff1f\u5c45\u7136\u6709\u8fd9\u4e48\u7b80\u5355\u7684 SQL \uff1f\u2014\u2014\u6765\u81ea\u6570\u4ed3\u5f00\u53d1                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687432\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : huobazi <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u51e0\u5343\u884c\u7684 sp\uff0csp \u5957 sp\uff0c\u5404\u79cd\u4f20\u53c2\u4f20 xml \u548c json\uff0c\u8fd8\u4e0d\u662f\u4e00\u4e2a\u5b57 \u201d\u6574\u201c<\/p>\n<p>\u8fd9\u79cd sql \u90fd\u662f \u5148\u5199\u4e2a \u5c0f\u7684\uff0c\u7b80\u5355\u7684\uff0c\u6162\u6162\u52a0\u4e0a\u53bb\u7684\u3002\u5176\u5b9e\u4e5f\u6ca1\u5565\u3002<\/p>\n<p>\u597d\u7684\u4ee3\u7801\u90fd\u662f helloword\uff0c\u4f46 helloword \u4e0d\u503c\u94b1                                                            <\/p><\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687433\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : lllllIIIlll <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6570\u636e\u5206\u6790\u90a3\u8fb9\u51e0\u767e\u884c\u7684 sql \u592a\u591a\u4e86                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687434\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : taogen <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u67d0\u5217\u8868\u9875\u9762 SQL\uff0cjoin 20 \u4e2a\uff0c\u5352                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687435\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : w292614191 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4f60\u8fd9\u4e2a\u4e00\u822c\u822c\uff0c\u6211\u4eec\u8fd9 C#\u9879\u76ee\uff0c\u51e0\u767e\u884c\u51e0\u767e\u884c\u662f\u57fa\u672c\u5199\u6cd5\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687436\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : hafuhafu <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5176\u5b9e\u8fd8\u597d\uff0c\u6211\u4eec\u8fd9\u91cc\u62bd\u53d6\u62a5\u8868\u6570\u636e\u86ee\u591a\u5f88\u957f\u7684\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687437\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : FlyingShark <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u4e2a\u8fd8\u597d\uff0c\u7ed3\u6784\u8fd8\u7b97\u6e05\u695a\u3001\u800c\u4e14\u522b\u540d alias \u5bb9\u6613\u9605\u8bfb\u3002\u4e5f\u89c1\u8fc7 700 \u884c\u7684 SQL\uff0c\u4e00\u5806 union all \u62fc\u8d77\u6765\u2026\u2026                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687438\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : roundgis <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @czzt1 \u524d\u6771\u5bb6\u7684\u7cfb\u7d71\u662f\u5169\u5c64\u67b6\u69cb\uff0c\u5ba2\u6236\u7aef\u76f4\u9023\u6578\u64da\u5eab\uff0c\u6838\u5fc3\u4ee3\u78bc\u5c31\u662f\u90a3\u5806\u5b58\u5132\u904e\u7a0b\uff0c\u96a8\u4fbf\u4e00\u500b\u51fd\u6578\u90fd\u904e\u842c\u884c\u4ee3\u78bc                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687439\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : fhsan <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @roundgis \u597d\u5bb6\u4f19\uff0c\u53f0\u6e7e\u516c\u53f8\u6709\u94b1\u4e70\u4e86\u4e24\u4efd oracle\uff0c\u540c\u6b65\u6570\u636e\u3001\u5904\u7406\u6570\u636e\u7b49\u7b49\u90fd\u662f sql \u5e72\uff0c\u8981\u4e0d\u4e70\u4e86\u5e72\u561b                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687440\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : andyskaura <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6211\u4eec\u6574\u4e2a\u9879\u76ee\u5c31\u662f\u8fd9\u4e48\u5f00\u53d1\u7684 \u8fd9\u6837\u7684\u786e\u4e0d\u597d \u4f46\u662f\u8981\u6539\u5427 \u5feb 20 \u5e74\u90fd\u8fd9\u4e48\u8fc7\u6765\u4e86 \u6ca1\u5fc5\u8981                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687441\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : manami <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4f60\u662f\u6ca1\u89c1\u8fc7\u4e0a\u5343\u884c\u7684\u4e00\u4e2a\u5b58\u50a8\u8fc7\u7a0b                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687442\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : fanfpy <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5b58\u50a8\u8fc7\u7a0b\u4e0d\u90fd\u8fd9\u957f\u5ea6\u5417                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687443\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : fanfpy <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             ![1073bfd22008d0b5439b890c3ca1755.png]( https:\/\/i.loli.net\/2020\/12\/23\/XL9ERHbihIT6sAB.png) <img decoding=\"async\" src=\"http:\/\/4563.org\/wp-content\/uploads\/2021\/01\/504J5BO2-8.png\" alt=\"\u65e5\u5e38\u6da8\u77e5\u8bc6\u7cfb\u5217-\u60ca\u5929\u5730\u6ce3\u9b3c\u795e\u7684 sql\uff0c 300 \u884c~~\"> <img decoding=\"async\" src=\"http:\/\/4563.org\/wp-content\/uploads\/2021\/01\/504J5BO2-8.png\" alt=\"\u65e5\u5e38\u6da8\u77e5\u8bc6\u7cfb\u5217-\u60ca\u5929\u5730\u6ce3\u9b3c\u795e\u7684 sql\uff0c 300 \u884c~~\"> <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687444\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : 526326991 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u505a\u8fc7\u6570\u636e\u62a5\u8868\u8868\u793a \u6b63\u5e38\u64cd\u4f5c~~~                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687445\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : fish267 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u79cd\u8d34\u6570\u4ed3\u4ee3\u7801\uff0c\u4e0d\u662f\u8fdd\u89c4\u4e48\uff0c\u8981\u6709\u7a0b\u5e8f\u5458\u57fa\u672c\u7d20\u517b\u54c8                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687446\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : thtznet <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4e3b\u5c11\u89c1\u591a\u602a\uff0c\u8fd9\u6bb5 sql \u811a\u672c\u4e0d\u662f erp \u65e5\u5e38\u4e48\uff1f\u4e3b\u4f30\u8ba1\u6ca1\u6709\u4ece\u4e8b\u8fc7\u4f01\u4e1a\u5185\u4fe1\u606f\u7cfb\u7edf\u7684\u5f00\u53d1\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687447\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : 251243021 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8bf7\u95ee\u8fd9\u4e48\u591a\u884c\u90fd\u662f\u600e\u4e48\u8bfb\u61c2\u4e14\u4fdd\u8bc1\u4fee\u6539\u4e0d\u51fa\u95ee\u9898\u7684\u5462                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687448\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : todd7zhang <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             ERP \u91cc\u9762\u6ee1\u5929\u98de                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687449\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : antiquezzz <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u770b\u7740\u8fd8\u662f\u633a\u6574\u9f50\u7684\uff0csql \u5199\u7684\u633a\u597d\u7684\uff0c\u8fd9\u6837\u6548\u7387\u9ad8                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687450\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : xpresslink <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5176\u5b9e\u8fd9\u4e1c\u897f\u96be\u5ea6\u6ca1\u591a\u5927\uff0c\u53ea\u662f\u9700\u8981\u5145\u5206\u7406\u89e3\u4e1a\u52a1\u548c\u6570\u636e\u7684\u542b\u4e49\u3002<br \/>\u8fd9\u79cd\u4e1c\u897f\u5c31\u8c61\u5783\u573e\u5806\u7ecf\u5e74\u7d2f\u6708\u5806\u5f97\u592a\u9ad8\u4e86\u4ee5\u540e\uff0c\u8ba9\u4eba\u6709\u4e00\u89e6\u5373\u6e83\u7684\u611f\u89c9\u800c\u5df2\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687451\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : annielong <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             erp \u4e1a\u52a1\u7c7b\u57fa\u672c\u64cd\u4f5c\uff0c\u53ea\u6709 cms \u7c7b\u7684\u4e0d\u600e\u4e48\u7528\u8fd9\u4e9b                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687452\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : g76 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u957f\u89c1\u8bc6\u4e86                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687453\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : potatoyam <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u597d\u719f\u6089\u770b\u7740\u50cf\u7406\u8d22\u4e1a\u52a1\u7684\u7edf\u8ba1 sql                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687454\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : a54552239 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6570\u636e\u91cf\u5927\u4e86\uff0c\u4e0d\u4f1a\u5361\u5417                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687455\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : lcdxiangzi <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5982\u679c\u53bb\u6389\u6700\u540e\u4e00\u884c\uff0c\u4f1a\u6709\u4ec0\u4e48\u6548\u679c\uff1f                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687456\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : iRiven <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5d4c\u5957\u591a\u5c42\uff0c\u53ef\u4ee5\u7528 with as \u628a\u6c34\u5e73\u4ee3\u7801\u62c6\u5206\u6210\u5782\u76f4\uff0c\u66f4\u597d\u7406\u89e3\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687457\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : lap510200 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8054\u4e86\u5f88\u591a\u5f20\u8868 \u5d4c\u5957\u5b50\u67e5\u8be2 \u4e34\u65f6\u8868 \u6548\u7387\u4f4e\u4e0b \u4f46\u662f\u5199\u7684\u4eba\u4e5f\u86ee\u82e6\u4e86 \u81f3\u5c11\u6839\u636e\u7406\u6e05\u4e1a\u52a1\u903b\u8f91\u5199\u51fa\u6765\u8fd9\u4e9b sql \u52a0\u4e0a\u8c03\u8bd5\u8fd9\u6253\u65ad sql \u662f\u5426\u6ee1\u8db3\u9700\u6c42 \u8fd9\u4e9b\u6240\u82b1\u8d39\u7684\u65f6\u95f4\u4f30\u8ba1\u81f3\u5c11 1 \u5929 <\/p>\n<p>\u9664\u6b64\u4e4b\u5916\u628a\u6280\u672f\u603b\u76d1\u62d6\u51fa\u53bb\u6bd9\u4e86 \u5c45\u7136\u6ca1\u6709\u4ee3\u7801\u5ba1\u6838                                                            <\/p><\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687458\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : sampeng <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u624d 300 \u884c\u3002\u3002\u89c1\u8fc7\u51e0\u5343\u884c\u7684\u4e48\uff1f\u5f1f\u5f1f\u3002\u3002\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687459\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : kisshere <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             MySQL\uff1a\u4f60\u662f\u4e0d\u662f\u89c9\u5f97\u4f60\u5f88\u5e7d\u9ed8\uff1f                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687460\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : KaynW <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6211\u53ea\u770b\u5230\u4e86 27358                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687461\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : quan01994 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd8\u597d\u5566                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687462\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : IrisFrankie <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u633a\u6574\u9f50\u7684\uff0c\u547d\u540d\u4e5f\u6ca1\u5565\u95ee\u9898\u3002\u4f60\u7406\u89e3\u9700\u6c42\u540e\u518d\u8bfb\u5e94\u8be5\u4f1a\u633a\u7b80\u5355\u7684\u3002\u3002\u3002\u4e0d\u8981\u8bd5\u56fe\u5426\u5b9a\u5b83\uff0c\u9664\u975e\u4f60\u80fd\u4f18\u5316\u5b83                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687463\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : unicloud <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6253\u6270\u4e86\u3002\u3002\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687464\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : DarkCat123 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u662f\u4eba\u7c7b\u6587\u660e\u7684\u7cbe\u534e\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687465\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : OldHu <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u89c1\u8fc7 sql \u4fdd\u5b58\u6210\u6587\u672c\u6587\u4ef6\u6709 2MB \u7684\u5417\uff1f \u4f60\u4eec\u554a\uff0ctoo naive \uff01<\/p>\n<p>ERP \u7cfb\u7edf\u5565\u7684\uff0c\u957f sql \u8fd8\u662f\u5f88\u591a\u7684\u3002 \u6240\u4ee5\uff0cERP \u7cfb\u7edf\u5927\u90e8\u5206\u8fd8\u662f Oracle \u8fd9\u79cd\u5546\u4e1a\u6570\u636e\u5e93\u591a\u3002<br \/>MySQL \u662f\u501f\u7740\u4e92\u8054\u7f51\u8d77\u6765\u7684\u3002\u4e1a\u52a1\u76f8\u5bf9\u7b80\u5355\uff0c\u5f00\u53d1\u4eba\u5458\u591a\uff0c\u5f88\u591a\u903b\u8f91\u7528\u5f00\u53d1\u4ee3\u7801\u89e3\u51b3\uff0c\u800c\u4e0d\u662f\u7528\u6570\u636e\u5e93\u3002<\/p>\n<p>\u6211\u4ee5\u524d\u505a Oracle ERP \u7684\u5f88\u591a\u4e1a\u52a1\u5f00\u53d1\uff0c\u5c31\u662f plsql + shell\uff0c \u5c31\u8ddf\u73b0\u5728\u540e\u7aef\u5199 java \u4e00\u6837\u3002<\/p>\n<p>v2ex \u5927\u90e8\u5206\u90fd\u662f\u4e92\u8054\u7f51\u4ece\u4e1a\u8005\u4e3a\u4e3b\uff0c\u8fd8\u6709\u5f88\u591a\u670b\u53cb\u662f\u524d\u7aef\uff0c\u6240\u4ee5\u5bf9\u8fd9\u6837\u6709\u70b9 old style \u7684\u4e1c\u897f\u5f88\u964c\u751f\uff0c\u964c\u751f\u4e86\u53c8\u5bb9\u6613\u5bfc\u81f4\u53cd\u611f\u3002                                                            <\/p><\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687466\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : limuyan44 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u624d 300 \u884c\u800c\u5df2\uff0c\u521a\u6bd5\u4e1a\u90a3\u4f1a\u5199\u4e86\u534a\u5e74 sql,300 \u884c\u7b97\u662f\u8d77\u6b65\u4e86\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687467\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : la2la <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @OldHu \u5bf9\u7684\uff0coracle erp \u7cfb\u7edf\uff0c\u5305\u62ec\u4e4b\u524d\u7684\u4e00\u4e9b\u62a5\u8868\u7cfb\u7edf\uff0c300 \u884c\u57fa\u672c\u64cd\u4f5c                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687468\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Vegetable <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u4e2a\u867d\u7136\u957f\uff0c\u4f46\u662f\u903b\u8f91\u4e0d\u590d\u6742\u5427\uff0c\u53ea\u662f\u5b57\u6bb5\u591a\u800c\u5df2\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687469\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : mengdodo <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u725b\u76ae                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687470\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : yeqizhang <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u611f\u89c9 erp \u62a5\u8868\u5e38\u89c1\uff0c\u53cd\u6b63\u6570\u4ed3\u6570\u636e\u5904\u7406\u7684\u6211\u662f\u89c1\u8fc7\u5199\u5f88\u591a\u884c\u7684                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687471\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : optional <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4e0d\u8bf4 erp\uff0c\u641e\u6570\u636e\u5206\u6790\u4e5f\u89c9\u5f97\u8fd9\u4e2a\u6ca1\u4ec0\u4e48\u554a                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687472\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Mohanson <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u54c8\u54c8, \u4e3b\u672c\u6765\u60f3\u5e26\u8282\u594f, \u7ed3\u679c\u4e0b\u4e00\u5806\u4eba\u624d\u628a\u4e3b\u63cf\u8ff0\u6210\u4e00\u4e2a&#8221;\u6ca1\u89c1\u8bc6\u7684&#8221;&#8230;                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687473\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : liuxey <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             PL\/SQL\uff1a\u884c\u6570\u7b97\u4ec0\u4e48\uff0c\u8c03\u7528\u6808\u582a\u6bd4 Java                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687474\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : mamahaha <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u662f\u4e0d\u60f3\u8ba9\u4eba\u62a2\u996d\u7897\u5427\uff1f\u5347\u7ea7\u4e1a\u52a1\u8001\u8001\u5b9e\u5b9e\u8fd8\u5f97\u627e\u4ed6\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687475\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Umenezumi <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6570\u636e\u5206\u6790\u90a3\u8fb9\u513f\u7ecf\u5e38\u662f\u8fd9\u79cd SQL \u554a\uff0c\u8fd9\u4e2a\u8fd8\u7b97\u903b\u8f91\u6e05\u6670\u4e86                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687476\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : jasonkayzk <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u60f3\u77e5\u9053\u8fd9\u79cd SQL \u7684\u6027\u80fd\u5982\u4f55= =                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687477\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Felldeadbird <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9 SQL \u5199\u5f97\u5f88\u597d\u554a\u3002\u81f3\u5c11\u8bf4\u660e DB \u547d\u540d\u4e0a \u89c4\u8303\u3002\u5982\u679c\u4e3b\u9047\u5230\u8fc7\u4e00\u63a8 AS a, b ,c, d&#8230;<\/p>\n<p>\u6211\u5f88\u597d\u5947\u8fd9\u4ee3\u7801\u6027\u80fd\u3002\u3002\u3002<\/p>\n<p>\u6700\u540e\uff0c\u4e3b\u76f4\u63a5\u8d34\u4ee3\u7801\uff0c\u4e0d\u6015\u95ee\u8d23\u5417\uff1f                                                            <\/p><\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687478\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : AntoniotheFuture <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5c0f\u610f\u601d\u5566\uff0c\u6211\u4e4b\u524d\u4e00\u4e2a\u9879\u76ee\u4e00\u6761 SQL3000 \u884c\u800c\u4e14\u6709 4 \u6761\uff0c\u8dd1\u4e00\u4e2a\u5c0f\u65f6\uff0c\u540e\u6765\u6211\u4e9a\u7d22\u6210 1000 \u884c\u4e86\uff0c\u8fd0\u884c\u65f6\u95f4\u964d\u5230 20 \u5206\u949f                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687479\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : thetbw <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd8\u597d\uff0c\u6211\u4eec\u516c\u53f8 4\uff0c5 \u767e\u884c\u7684\u4e5f\u6709\uff0c\u8fd8\u662f\u4e00\u4e2a sql \u8054\u63a5 10 \u591a\u5f20\u8868\u7684\uff0c\u52a0\u4e0a\u5b50\u67e5\u8be2\u3002\u53ea\u80fd\u8bf4\u516c\u53f8\u670d\u52a1\u5668\u771f\u7684\u5f3a\u5927\uff0c\u8fd8\u6709\u5c31\u662f\u8bbf\u95ee\u91cf\u4e5f\u6ca1\u6709\u5f88\u5927\uff0c\u63a5\u53e3\u901f\u5ea6\u8fd8\u80fd\u63a5\u53d7                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687480\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : ZhaoHongXuan <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             odps \u4e0a\u8dd1\u7684\uff1f                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687481\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : beichenhpy <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @roundgis \u9752\u94dc\u5668\u6211\u8bb0\u5f97\u5c31\u662f\u8fd9\u6837\u7684\u597d\u50cf                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687482\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : kevinjaz <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6211\u89c9\u5f97\u8fd8\u597d\u5440                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687483\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : fatestigma <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8ba9\u6211\u60f3\u8d77\u4e86\u5f53\u5e74\u4e0a\u6570\u636e\u5e93\u8bfe\uff0c\u51e0\u4e2a\u52a0\u5206\u9898\u90fd\u662f\u8fd9\u79cd\u4e0a\u767e\u884c\u7684\uff0c\u5199\u5b8c\u4e4b\u540e\u8fc7\u4e00\u5929\u5c31\u770b\u4e0d\u61c2\u81ea\u5df1\u5199\u7684\u5565\u4e86                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687484\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : FieldFarmer <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5f88\u591a\u9879\u76ee\u76f4\u63a5\u628a\u4e1a\u52a1\u903b\u8f91\u5199\u5728 oracle \u91cc\u9762\u7684\u2026\u7528\u5b58\u50a8\u8fc7\u7a0b                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687485\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Tink <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u4e0d\u662f\u624b\u5199\u7684\uff0c\u8fd9\u7edd\u58c1\u4e0d\u662f                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687486\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : loading <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u770b\u7740\u633a\u5e38\u89c4                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687487\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : AkideLiu <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             Oracle : \u522b\u96be\u4e3a MySQL\uff0c\u6709\u5565\u4e8b\u51b2\u6211\u6765                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687488\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : laicanwen <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6211\u5728\u524d\u516c\u53f8\u505a ERP \u7684\u65f6\u5019\u6ca1\u6709\u4e00\u4e2a\u5b58\u50a8\u8fc7\u7a0b\u5c11\u4e8e 300 \u884c\u7684\uff0c\u800c\u4e14\u5b57\u6bb5\u540d\u8fd8\u662f\u65e0\u610f\u4e49\u7f16\u53f7\uff0c\u770b\u4e00\u4e2a\u5b57\u6bb5\u67e5\u4e00\u904d\u624b\u518c\u3002\u90a3\u4f1a\u8981\u662f\u6bcf\u4e2a\u540c\u4e8b\u5199\u7684\u5b58\u50a8\u8fc7\u7a0b\u80fd\u6709\u8fd9\u6837\u6211\u5c31\u8c22\u5929\u8c22\u5730\u4e86\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687489\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Lancerer <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u73a9\u610f\u5728 mybatis \u91cc\u7684 xml \u770b\u624d\u662f\u96be\u53d7\uff0c\u5148\u628a\u4ed6\u8f6c\u6210 sql \u518d\u8bf4\u5427\u3002\u3002\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687490\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : ming7435 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6211\u76f4\u63a5\u5c31\u597d\u5bb6\u4f19\uff0c\u8fd9\u54e5\u4eec\u4e00\u8f88\u5b50\u4e0d\u4f1a\u88ab\u8f9e\u9000\u4e86\uff0c\u9664\u975e\u516c\u53f8\u5012\u95ed~                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687491\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : weizhen199 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4e00\u4e07\u884c\u7684 SP \u770b\u8fc7\uff0c\u4e00\u53e5\u5199\u4e86\u4e09\u767e\u884c\u7684\u8fd8\u86ee\u52c7\u7684                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687492\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : polymerdg <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u624d\u51e0\u767e\u884c\uff0c\u8fd9\u91cc 1000 \u884c\u4ee5\u4e0a\u7684 \u591a\u5f97\u5f88                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687493\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : cnzjl <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u633a\u6b63\u5e38\u7684                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687494\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : murmur <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u76f4\u89c2\u611f\u89c9\u8fd8\u884c\uff0c\u683c\u5f0f\u826f\u597d\uff0c\u547d\u540d\u5de5\u6574\uff0c\u5c31\u662f\u770b\u4e0d\u61c2\u9ad8\u7aef SQL<br \/>\u53e6\u5916\uff0c\u6211\u771f\u542c\u8fc7 SQL \u5199\u4e1a\u52a1\u7684\uff08\u5b58\u50a8\u8fc7\u7a0b\uff09\uff0c\u7f8e\u5176\u540d\u66f0\u76f4\u63a5\u70ed\u66f4\u4e0d\u9700\u8981\u91cd\u542f\uff0c\u6211\u7adf\u7136\u65e0\u8bdd\u53ef\u8bf4                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687495\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : chengz <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5176\u5b9e\u8fd8\u597d\uff0c\u7f29\u8fdb\u6b63\u5e38\u7684\u8fd8\u662f\u5f88\u597d\u770b\u7684<br \/>\u53ea\u662f\u65b0\u7684\u4e92\u8054\u7f51\u5e94\u7528\u8fd9\u79cd\u67e5\u8be2\u53ef\u80fd\u6bd4\u8f83\u5c11\u89c1                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687496\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : x66 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             ERP \u62a5\u8868\u5f00\u53d1\u8005\u7684\u65e5\u5e38\uff0c\u8fd9\u4e5f\u5c31\u4e00\u822c\u96be\u5ea6\u7684 sql \u5427                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687497\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : MoccaCafe <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u4e2a\u8fd8\u884c\u5427\uff0c\u8d77\u7801\u6ca1\u6709\u5404\u79cd\u5b58\u50a8\u8fc7\u7a0b\u548c\u672a\u77e5\u540d\u7684\u4e34\u65f6\u8868\uff0c\u57fa\u672c\u770b\u5f97\u61c2\u3002 \u5982\u679c\u8054\u8868\u8fc7\u4e8e\u590d\u6742\uff0c\u5f97\u8003\u8651\u662f\u5426\u8bbe\u8ba1\u6b20\u4f73\uff0c\u4e1a\u52a1\u8ddf\u4e0d\u4e0a                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687498\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : ZinWUT <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             ERP \u4e1a\u52a1\u7684\u65e5\u5e38\uff0chhh                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687499\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : tianhei826 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5199\u4e2a MERGE \u90a3\u4e48\u96be\u5417\u3002\u3002\u3002\u3002\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687500\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : c6h6benzene <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             300 \u884c\uff0c\u8fd9\u624d\u521a\u5f00\u59cb\u5199\u5427\u3002\u9664\u4e86 Select *\u4e4b\u5916\u597d\u50cf\u4e5f\u6ca1\u5565\u597d\u5410\u69fd\u7684\u4e86\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687501\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : jorneyr <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u662f\u4eba\u624d\uff0c\u5f97\u597d\u597d\u4fdd\u62a4                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687502\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Nicoco <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u611f\u89c9\uff0c\u518d\u641e\u641e\uff0c\u662f\u4e0d\u662f\u4f1a\u5d29\u6e83                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687503\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Achiii <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6570\u4ed3\u62bd\u6570\u7684 sql \u90fd\u5f88\u957f                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687504\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : junwind <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u867d\u7136\u4e0d\u5efa\u8bae\u8fd9\u4e48\u505a\uff0c\u4f46\u662f\u5199\u5f97\u51fa\u6765\u8fd9\u6837\u7684 sql\uff0c\u4e5f\u662f\u725b\u554a                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687505\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : kimqcn <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4ea4\u7ed9\u6700\u65b0\u7684\u91cf\u5b50\u9738\u6743\u8ba1\u7b97\u673a\u5904\u7406\u770b\u770b                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687506\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : neptuno <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4e0a\u5404\u4f4d\u90fd\u4e0d\u5ba1\u9898\u5417\uff0c\uff0c\u8fd9\u662f\u7528\u6237\u884c\u4e3a\u53ef\u4ee5\u968f\u610f\u89e6\u53d1\u7684\uff0c\uff0c\uff0c\u80af\u5b9a\u4e0d\u80fd\u8fd9\u6837\u5199\u5440                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687507\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : ojbkojbk <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u6b63\u5e38\u64cd\u4f5c \u4e4b\u524d\u5199\u62a5\u8868\u6bd4\u8fd9\u8fd8\u9a9a                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687508\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : solaya <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u4e2a SQL \u5199\u7684\u4e0d\u9519                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687509\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : onice <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u770b\u80fd\u7b97\u4f60\u8f93\uff0c\u6240\u4ee5\u6211\u6ca1\u770b\u61c2\uff0c\u4f60\u8d62\u4e86\u3002\u8fd9\u4e00\u5768\u5199\u7684\u771f\u597d\uff0c\u6211\u90fd\u770b\u4e0d\u61c2\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687510\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : jitongxi <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4e94\u5343\u884c\u7684\u5b58\u50a8\u8fc7\u7a0b\u90fd\u89c1\u8fc7\uff0c \u8fd9\u7b97\u5565                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687511\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : Frank9621 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u5144\u5f1f\uff0c\u4f60\u8fd9\u6837\u76f4\u63a5\u628a sql \u8d34\u51fa\u6765\u4e0d\u597d\u5427                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687512\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u4e3b<\/span> <span>\u8cc7\u6df1\u5927\u4f6c : funbox <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             @Frank9621 \u6709\u4e9b\u5b57\u6bb5 \u8868\u524d\u7f00\u5df2\u7ecf\u66ff\u6362~~                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687513\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : yanue <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u4e0d\u662f\u5e94\u8be5\u7b97\u4e00\u884c\u5417                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687514\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : lychs1998 <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u4f30\u8ba1\u662f\u53ef\u89c6\u5316\u7684 SQL \u67e5\u8be2\u6784\u9020\u5668\u6784\u9020\u7684\u3002                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li data-pid=\"4687515\" data-uid=\"2\">\n<div>\n<div>\n<div> <span>\u8cc7\u6df1\u5927\u4f6c : runninghipp <\/span>  <\/div>\n<div> <i title=\"\u5f15\u7528\"><\/i>  <span>          <\/span> <\/div>\n<\/p><\/div>\n<div>                                                             \u8fd9\u4e2a\u662f\u62a5\u8868\u6570\u636e\u628a                                                            <\/div>\n<\/p><\/div>\n<\/li>\n<li>\n","protected":false},"excerpt":{"rendered":"<p>\u65e5\u5e38\u6da8\u77e5\u8bc6\u7cfb\u5217-\u60ca\u5929\u5730\u6ce3\u9b3c\u795e\u7684 s&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[],"tags":[],"_links":{"self":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts\/237334"}],"collection":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=237334"}],"version-history":[{"count":1,"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts\/237334\/revisions"}],"predecessor-version":[{"id":237336,"href":"http:\/\/4563.org\/index.php?rest_route=\/wp\/v2\/posts\/237334\/revisions\/237336"}],"wp:attachment":[{"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=237334"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=237334"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/4563.org\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=237334"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}