1SELECT @@VERSION
-- Microsoft SQL Server 2022 (RTM-CU24) (KB5080999)
-- 16.0.4245.2 (X64) Feb 25 2026 15:01:38
-- Copyright (C) 2022 Microsoft Corporation
-- Standard Edition (64-bit) on Windows Server 2019
-- Standard 10.0 <X64> (Build 17763: ) (Hypervisor)1import sys2import IPython3import matplotlib4import pandas5import pyodbc6import sqlalchemy7 8print(f"Python : {sys.version}")9print(f"IPython : {IPython.__version__}")10print(f"matplotlib : {matplotlib.__version__}")11print(f"pandas : {pandas.__version__}")12print(f"pyodbc : {pyodbc.version}")13print(f"sqlalchemy : {sqlalchemy.__version__}")14 15# Python version : 3.14.316# IPython version : 9.12.017# matplotlib : 3.10.818# pandas : 3.0.219# pyodbc : 5.3.020# sqlalchemy : 2.0.48
1sessionInfo()2 3# R version 4.4.3 (2025-02-28 ucrt)4# Platform: x86_64-w64-mingw32/x645# Running under: Windows 11 x64 (build 26100)6#7# attached base packages:8# stats graphics grDevices utils datasets methods base9#10# other attached packages:11# glue_1.8.0 odbc_1.6.4.1 DBI_1.3.0