Your Ad Here

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.


You may like these posts

    How to prevent php website from sql injectionInactive in site then auto logout using phpHow to create rss feeds using php and mysqlHow to create excel file with mysql data using php code

 

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