Home » mysql »

2

Hi,

Following syntax is to create view in mysql.

One table user : id,fname,mname,lname,created_at
then create a table in the mysql
After that create a view.

Create or replace view user_view as select id, concat(fname,’ ‘,mname,’ ‘,lname),created_at from user;

Then it created a View.


Related Posts

    How to take backup of Database using PHP code?Mysql Date functions in php codeHow to create excel file with mysql data using php codeHow to implement graphs using fusion charts and php

 

2 Comments

  1. Reji says:

    but use “replace” with caution,

    its like this,
    CREATE or REPLACE view as

  2. Reji says:

    create or replace view view_name as your_select_statement.

Leave a Reply