Be Good. Do Good.
#GETTING THE DATA TYPE
x='subramanian'
y=5
z=5.05
print(x)
print(type(x))
print(y)
print(type(y))
print(z)
print(type(z))
print(x,y,z)
subramanian <class 'str'> 5 <class 'int'> 5.05 <class 'float'> subramanian 5 5.05
Models are where your developers spend most of their time within a dbt environment. Models are primarily written as a select statement and ...