I have one table in MSSQL Server 2012 whose data type of one column is defined as below:
COLUMN_NAME DATA_TYPE TYPE_NAME COLUMN_SIZE
description 2005 nvarchar 1073741823
When I run this query:
select * from tablename
using PHP PDO then I don't get any result. And if I write names of all fields in above sql select query excluding this field then I am getting result.
What is wrong with this data type?
Note: this table is directly imported from MySQL by using some tool.
I have googled a lot but could not get any solution.