15 lines
256 B
Python
15 lines
256 B
Python
|
|
import polars as pl
|
|
from clickhouse_connect.driver import *
|
|
from log import log
|
|
|
|
exists = client.command(
|
|
"EXISTS TABLE Attendance"
|
|
)
|
|
|
|
print(exists
|
|
|
|
|
|
exists = client.command(
|
|
"EXISTS TABLE Attendance"
|
|
) |