A painful afternoon, who will help me

ALTER PROCEDURE [dbo].[P_采购合同明细查询_1]
AS
BEGIN
SET NOCOUNT ON;

    IF OBJECT_ID(N'tempdb..#helpuser', N'U') IS NOT NULL
        DROP TABLE #helpuser;
          
    SELECT  b.合同单号 AS 合同单id, b.合同单行号, 实收数量
    INTO    #helpuser
    FROM    Biz_GDJFBH201801.dbo.Sheet_收货单_明细 b;

    SELECT  COUNT(*)
    FROM    #helpuser; 
  
  --  RETURN; 
    SET NOCOUNT OFF;
END;

EXEC P_采购合同明细查询_1

The running result of SQL Server Management Studio is 12410, but the result of metabase is 2000. I really don't understand. I feel that my head is big all afternoon

{
  "browser-info": {
    "language": "zh-CN",
    "platform": "Win32",
    "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36",
    "vendor": "Google Inc."
  },
  "system-info": {
    "file.encoding": "UTF-8",
    "java.runtime.name": "OpenJDK Runtime Environment",
    "java.runtime.version": "1.8.0_282-b08",
    "java.vendor": "Red Hat, Inc.",
    "java.vendor.url": "https://www.redhat.com/",
    "java.version": "1.8.0_282",
    "java.vm.name": "OpenJDK 64-Bit Server VM",
    "java.vm.version": "25.282-b08",
    "os.name": "Linux",
    "os.version": "3.10.0-1062.el7.x86_64",
    "user.language": "zh",
    "user.timezone": "Asia/Shanghai"
  },
  "metabase-info": {
    "databases": [
      "h2",
      "sqlserver"
    ],
    "hosting-env": "unknown",
    "application-database": "mysql",
    "application-database-details": {
      "database": {
        "name": "MySQL",
        "version": "5.7.32-log"
      },
      "jdbc-driver": {
        "name": "MariaDB Connector/J",
        "version": "2.6.2"
      }
    },
    "run-mode": "prod",
    "version": {
      "tag": "v0.40.1",
      "date": "2021-07-14",
      "branch": "release-x.40.x",
      "hash": "ed8f9c8"
    },
    "settings": {
      "report-timezone": null
    }
  }
}

@zqycn Please don't create multiple topics. It's just a waste of everyone's time.
Answer here: Matebase is different from the dataset obtained by SQL Server Management Studio or The field value is wrong when it is displayed in the view

Sorry, I thought these problems were different

@zqycn It's so difficult to understand, since you're writing bad topic titles and not including full stacktraces.