如何通过php脚本将alpha,beta,delta插入MySQL数据库?

我想使用这些特殊字符将主题代码保存到我的数据库表中。

示例主题代码CSC113α

最佳答案

来自this website:

Declare @t table( id int, txt nvarchar(20))
Insert Into @t Values (1, N'αβγδ')
Insert Into @t Values (2, nchar(945)+nchar(946)+nchar(947)+nchar(948))


因此,只需将其放入PHP中就可以了。

10-07 16:02