AmitDiwan has Published 10740 Articles

Select date from MySQL and format to text?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2019 11:42:55

226 Views

To select date and format, use SELECT DATE_FORMAT(). Following is the syntax −Syntaxselect date_format(yourColumnName, '%e %b %y') from yourTableName;Let us first create a table −mysql> create table DemoTable    -> (    -> DueDate date    -> ); Query OK, 0 rows affected (0.52 sec)Insert some records in the table ... Read More

Group MySQL rows in an array by column value?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2019 11:40:22

3K+ Views

To group rows in an array, use GROUP_CONCAT() along with the ORDER BY clause. Let us first create a table −mysql> create table DemoTable    -> (    -> Id int,    -> FirstName varchar(20)    -> ); Query OK, 0 rows affected (0.78 sec)Insert some records in the table ... Read More

Get the HashCode for the current UInt32 instance in C#

AmitDiwan

AmitDiwan

Updated on 11-Dec-2019 11:32:46

148 Views

To get the HashCode for the current UInt32 instance, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main() {       uint val1 = 100;       uint val2 = UInt16.MinValue;       Console.WriteLine("HashCode for val1 = "+val1.GetHashCode());   ... Read More

Get the angle whose sine is float value argument in C#

AmitDiwan

AmitDiwan

Updated on 11-Dec-2019 11:26:30

176 Views

To get the angle whose sine is float value argument, the code is as follows −Exampleusing System; public class Demo {    public static void Main() {       float val1 = 0.1f;       float val2 = 8.9f;       Console.WriteLine("Angle (val1) = "+(MathF.Asin(val1)));     ... Read More

Get the hyperbolic arc-cosine of a floating-point value in C#

AmitDiwan

AmitDiwan

Updated on 11-Dec-2019 11:10:22

168 Views

To get the hyperbolic arc-cosine of a floating-point value, the code is as follows −Exampleusing System; public class Demo {    public static void Main() {       float val1 = 0.1f;       float val2 = 0.9f;       Console.WriteLine("Angle (val1) = "+(MathF.Acosh(val1)));       ... Read More

Check whether the specified character has a surrogate code in C#

AmitDiwan

AmitDiwan

Updated on 11-Dec-2019 11:07:06

239 Views

To check whether the specified character has a surrogate code, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main() {       string str = new String(new char[] { 'k', 'm', 'g', 't', '\uD800' });       bool res = ... Read More

How to get Synchronize access to the StringDictionary in C#

AmitDiwan

AmitDiwan

Updated on 11-Dec-2019 11:02:44

117 Views

To get synchronize access to the StringDictionary, the code is as follows −Example Live Demousing System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       StringDictionary strDict = new StringDictionary ();       strDict.Add("A", "Books");       strDict.Add("B", "Electronics");       ... Read More

How to get Synchronize access to the StringCollection in C#

AmitDiwan

AmitDiwan

Updated on 11-Dec-2019 10:57:21

91 Views

To get synchronize access to the StringCollection, the code is as follows −Example Live Demousing System; using System.Collections.Specialized; public class Demo {    public static void Main() {       StringCollection stringCol = new StringCollection();       String[] arr = new String[] { "100", "200", "300", "400", "500" }; ... Read More

Get the types nested within the current Type C#

AmitDiwan

AmitDiwan

Updated on 11-Dec-2019 10:54:09

191 Views

To get the types nested within the current Type, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main() {       Type type1 = typeof(Subject);       try {          Type[] type2 = type1.GetNestedTypes();       ... Read More

Get a specific type nested within the current Type in C#

AmitDiwan

AmitDiwan

Updated on 11-Dec-2019 10:49:41

117 Views

To get a specific type nested within the current Type, the code is as follows −Example Live Demousing System; public class Demo {    public static void Main() {       Type type1 = typeof(Subject);       try {          Type type2 = type1.GetNestedType("AdvSubject");     ... Read More

Advertisements