- π©βπ» In my free time I like to read personal development books, learn new things, and work on different projects
- π€ Iβm currently learning Python, and Data Warehouse
- π¬ Ask me about databases, dynamic SQL, and data visualization
- π Cats, coffee & sweet things, databases, gardening, reading self-development books, cooking & eating
- π€ Iβm currently learning Python, and Data Warehouse
- π¬ Ask me about databases, dynamic SQL, and data visualization
- π Cats, coffee & sweet things, databases, gardening, reading self-development books, cooking & eating
DECLARE @name varchar(10), @job varchar(50), @description varchar(100), @location varchar(20)
select
@name = 'Luchiana',
@job = 'Business Intelligence Developer',
@description = 'cat lover with a great passion for data. ',
@location = 'Romania'
SELECT CONCAT('I''m ', @name, ', a ', @description, 'I currently work as a ' + @job + ', in ', @location, '.' )
-------Results--------
I'm Luchiana, a cat lover with a great passion for data. I currently work as a Business Intelligence Developer, in Romania.
I'm Luchiana, a cat lover with a great passion for data. I currently work as a Business Intelligence Developer, in Romania.