Computer Science, asked by ChetanSingh1972, 10 months ago

In access, two tables can share same name . Is it true or false

Answers

Answered by atikshghuge
1

Answer:

This is what I'd tested:

mysql> create table test(id int);

Query OK, 0 rows affected (0.00 sec)

mysql> desc test;

| Field | Type    | Null | Key | Default | Extra |

--------------------------------------------------

id       int(11)   YES           NULL

mysql> create temporary table test(id int);

Query OK, 0 rows affected (0.00 sec)

mysql> desc test;

| Field | Type    | Null | Key | Default | Extra |

--------------------------------------------------

id       int(11)   YES           NULL

mysql> drop table test;

Query OK, 0 rows affected (0.00 sec)

mysql> desc test;

| Field | Type    | Null | Key | Default | Extra |

--------------------------------------------------

id       int(11)   YES           NULL

Is this a bug or is there an alternate way to overcome this?

mysql table

Answered by Atharva6914
3

Answer:

Hey mate.....

I will follow you but you should mark as brainliest answer....

Please....

Similar questions