How to enter the Indian Rupee symbol in MySQL Server 5.1?

Viewed 8011

I am unable to find the exact solution for MySQL

3 Answers

Simplest way to do it is, utf8mb4 stores all the symbols

 ALTER TABLE AsinBuyBox CONVERT TO CHARACTER SET utf8mb4;
Related