-1

I currently have a query where I want to select cake:

SELECT ''

But upon executing query, it gives me an output of '??'

How to output the real cake?

Dale K
  • 25,246
  • 15
  • 42
  • 71
Manjay
  • 39
  • 1
  • 10
  • 1
    [SQL Query Where Column = '' returning Emoji characters and ](https://stackoverflow.com/questions/47551528/sql-query-where-column-returning-emoji-characters-and) – Praveen Gehlot Jan 10 '20 at 07:57

1 Answers1

3

set as unicode using the N'' notation

SELECT N''
lptr
  • 1
  • 2
  • 6
  • 16
  • @Manjay then accept this answer, i.e. click on the big, gray tick mark next to the answer. – Abra Jan 10 '20 at 07:58