MySQL Forums
Forum List  »  Newbie

Create View Auto Format
Posted by: Daniel Otremba
Date: June 03, 2021 11:26AM

Hello,

When i create a view lIke:

create view mysql.test as
select
db_name,
table_name
from mysql.column_stats

it will always auto Formated like This:

select
`mysql`.`column_stats`.`db_name` AS `db_name`,
`mysql`.`column_stats`.`table_name` AS `table_name`
from
`mysql`.`column_stats`


Is it possible to turn this off?
I mean the Table name bevor the columns and this stupid sign "`"
Why mysql do this?

plz Help me.

Im shortly before freaking out

Options: ReplyQuote


Subject
Written By
Posted
Create View Auto Format
June 03, 2021 11:26AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.