Can we have array type data in SQL Server 2008 currently I use a comma-separated value that needs to be considered as an array value
SQL Server 2005+ supports table variables:
declare @arr table (col1 int) insert @arr (col1) values (3), (1), (4)
They are equivalent to arrays.
Instead, you can use:1. Table2. Temporary table3. Variable table (2005+)4. Tabular parameters (2008+)
User tables:
If you want to know more, this article is widely mentioned:
http://www.sommarskog.se/arrays-in-sql-2008.html
Table value options were introduced in SQL Server 2008.
Source: https://habr.com/ru/post/918748/More articles:IOS SDK AVFoundation ... How to create a video ad using a paint resource - iosProblem with face detection using CIDetector - iosHow to add tooltip text to Gridview column header, WPF VS2010 - wpfNSMenuItem KeyEquivalent Error "" (space) - cocoaGetting instances of Visual Studio 2010 and joining a process programmatically? - debuggingSet the file sharing level to โAnyone with a linkโ through the Google Drive API - google-drive-sdkwhere op_addition in [int, float, double] - c #Debugging jQuery event in Chrome - jqueryiOS: creating a 3D compass - iosGet parent recursions in the correct order to delete from MySQL table - phpAll Articles