
Displaying Emoji in SQL Server
In SQL Server we can create a database, table and write T-SQL query using emoji.
Lets create a table and then insert few records into table.
Create table [ðððĪŠð] (EmojiId INT, EmojiName Varchar(20), Emoji NVarchar(MAX))
You can check whether a table is created or not by using object explorer.
As you can see table is created which have emojies as table name.
Lets insert some records into table.
Insert into [ðððĪŠð] values (1 , 'face with big eyes',N'ð') Insert into [ðððĪŠð] values (2 , 'winking face',N'ð') Insert into [ðððĪŠð] values (3 , 'face with tongue',N'ð') Insert into [ðððĪŠð] values (4 , 'face with tongue',N'ð') Insert into [ðððĪŠð] values (5 , 'clown face',N'ðĪĄ')
No we select records from table.
select * from [ðððĪŠð]
You can get more emojis from this website- Emojis
758 total views, 7 views today