Anvi Jain has Published 569 Articles

How to open and close a PDF file using Swift?

Anvi Jain

Anvi Jain

Updated on 30-Jul-2019 22:30:24

687 Views

In this article we’ll see how to open a pdf file using swift in iOS. Here we’ll do it with an example of opening pdf in webView in iOS. Let’s create a project and add WKWebView to the storyboard.Connect it’s outlet to the ViewController class.Now we’ll see two different thingsOpening ... Read More

How to query between two dates in MySQL?

Anvi Jain

Anvi Jain

Updated on 30-Jul-2019 22:30:24

18K+ Views

You can query between dates with the help of BETWEEN statement. The syntax is as follows −select *from yourTableName where yourColumnName between ‘yourStartingDate’ and curdate().Use curdate() or now(), both these functions will work. To understand the above syntax, let us create a table −mysql> create table BetweenDateDemo ... Read More

How to insert current date/ time using now() in a field with MySQL?

Anvi Jain

Anvi Jain

Updated on 30-Jul-2019 22:30:24

842 Views

In MySQL, now() can be used to insert current date/time. The syntax is as follows −insert into yourTableName values(now());To understand the above concept of inserting current date/time in the table, let us first create a table −mysql> create table CurrentDateTimeDemo −> ( −> YourTime ... Read More

Setting similar value for a column in a MySQL table?

Anvi Jain

Anvi Jain

Updated on 30-Jul-2019 22:30:24

88 Views

You can set value for a column of all records with the help of update command.The syntax is as follows if you want set NULL value for all the records in a column −update yourTableName set yourColumnName = NULL;Or if you want to use empty string, the following is the ... Read More

How to select an empty result set in MySQL?

Anvi Jain

Anvi Jain

Updated on 30-Jul-2019 22:30:24

1K+ Views

Select an empty result set with the help of dummy table ‘dual’ from MySQL. The query is as follows −mysql> select 1 from dual where false; Empty set (0.00 sec)In the above query, “dual” is a dummy table and the above condition false. Therefore, it returns empty set.Let us check ... Read More

List of non-empty tables in all your MySQL databases?

Anvi Jain

Anvi Jain

Updated on 30-Jul-2019 22:30:24

1K+ Views

To list non-empty tables in MySQL database, use “information_schema.tables”. The following is the query for all database tables −mysql> select table_type, table_name from information_schema.tables    −> where table_rows >= 1;Above, we have considered only the table that have 1 or more than 1 rows i.e. non-empty table.The following is the ... Read More

How to check multiple columns for a single value in MySQL?

Anvi Jain

Anvi Jain

Updated on 30-Jul-2019 22:30:24

2K+ Views

You can check multiple columns for one value with the help of IN operator. The syntax is as follows −select *from yourTableName where value IN(yourColumnName1, yourColumnName2, ......N);To understand the above concept, let us create a table with some columns. The query to create a table is as follows −mysql> create ... Read More

8085 program to count total even numbers in series of 10 numbers

Anvi Jain

Anvi Jain

Updated on 30-Jul-2019 22:30:24

1K+ Views

In this program we will see how to count number of even numbers in a block of elements.Problem StatementWrite 8085 Assembly language program to count number of even numbers in a block of data, where the block size is 10D. The block is starting from location8000H.DiscussionThe Odd Even checking is ... Read More

Get a list of non-empty tables in a particular MySQL database?

Anvi Jain

Anvi Jain

Updated on 30-Jul-2019 22:30:24

644 Views

To get a list of non-empty tables in a particular MySQL database, the following is the syntax −SELECT table_type, table_name, table_schema from information_schema.tables where table_rows >= 1 and table_schema = 'yourDatabaseName';Implement the above syntax for your database. Here, our database is “test”. The query is as follows −mysql> select table_type, ... Read More

8085 program to find 2's complement of the contents of Flag Register

Anvi Jain

Anvi Jain

Updated on 30-Jul-2019 22:30:24

425 Views

In this program we will see how to find 2's complement of the content of flag register.Problem StatementWrite 8085 Assembly language program to find 2's complement of the content of flag register.DiscussionWe cannot access the total flag register directly. To use them we have to push the PSW(Accumulator-Flag) into stack, ... Read More

Advertisements