Thank you
Anton
sp_rename [enzotest.todoitem],[todoitem2]
Create view enzotest.todoitem
with plan
such as
SELECT id,[text], Complete FROM enzotest.todoitem2
You don’t need to use SCHEMABINDING, but it helps to manage objects from the portal. Now that you have a view, you should be able to join other tables easily.
div>
I am using an Android app to test the Azure Mobile Services tool. For single-table CRUD operations, it works very well, but I cannot find any documentation or examples in multi-table queries. Does anyone Seeing anything in this regard-whether it’s doing server-side (such as creating a view) or on an Android device?
Thank you
Anton
I don’t know if this is supported, but I want to create one View and access it through mobile services, first you need to create a table from the Azure portal as a table, then use sp_rename in the database to rename your table [servicename].[tablename] to [servicename].[tablename2], and finally create one The view named [servicename].[tablename]. I tested it and it seems to work. This is how to change the ToDoItem table to the view of the sample program provided by Microsoft:
sp_rename [enzotest .todoitem],[todoitem2]
Create view enzotest.todoitem
and plan
such as
SELECT id,[text], complete FROM enzotest.todoitem2
You don’t need to use SCHEMABINDING, but it helps to manage objects from the portal. Now that you have a view, you should be able to join other tables easily.
WordPress database error: [Table 'yf99682.wp_s6mz6tyggq_comments' doesn't exist]SELECT SQL_CALC_FOUND_ROWS wp_s6mz6tyggq_comments.comment_ID FROM wp_s6mz6tyggq_comments WHERE ( comment_approved = '1' ) AND comment_post_ID = 4203 ORDER BY wp_s6mz6tyggq_comments.comment_date_gmt ASC, wp_s6mz6tyggq_comments.comment_ID ASC